Results

By type

          /opt/lib/python3.9/site-packages/onaplogging/logWatchDog.py:29: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.
  return yaml.load(f.read())
2022-09-24T04:56:36+0000 | MainThread | 139991929376072 | INFO | pmsh_config | _get_config | ServiceName= | RequestID= | InvocationID= | Attempting to fetch PMSH Configuration from CBS.
2022-09-24T04:56:36+0000 | MainThread | 139991929376072 | INFO | pmsh_config | _get_config | ServiceName= | RequestID= | InvocationID= | Successfully fetched PMSH config from CBS: {'config': {'aaf_identity': 'dcae@dcae.onap.org', 'aaf_password': 'demo123456!', 'ca_cert_path': '/opt/app/pmsh/etc/certs/cacert.pem', 'cert_path': '/opt/app/pmsh/etc/certs/cert.pem', 'control_loop_name': 'pmsh-control-loop', 'enable_tls': True, 'key_path': '/opt/app/pmsh/etc/certs/key.pem', 'operational_policy_name': 'pmsh-operational-policy', 'pmsh_policy': {'subscription': {'administrativeState': 'LOCKED', 'fileBasedGP': 15, 'fileLocation': '/pm/pm.xml', 'measurementGroups': [{'measurementGroup': {'managedObjectDNsBasic': [{'DN': 'dna'}, {'DN': 'dnb'}], 'measurementTypes': [{'measurementType': 'countera'}, {'measurementType': 'counterb'}]}}, {'measurementGroup': {'managedObjectDNsBasic': [{'DN': 'dnc'}, {'DN': 'dnd'}], 'measurementTypes': [{'measurementType': 'counterc'}, {'measurementType': 'counterd'}]}}], 'nfFilter': {'modelInvariantIDs': [], 'modelNames': [], 'modelVersionIDs': [], 'nfNames': ['^pnf.*', '^vnf.*']}, 'subscriptionName': 'ExtraPM-All-gNB-R2B'}}, 'streams_publishes': {'policy_pm_publisher': {'dmaap_info': {'topic_url': 'https://message-router:3905/events/unauthenticated.DCAE_CL_OUTPUT'}, 'type': 'message_router'}}, 'streams_subscribes': {'aai_subscriber': {'dmaap_info': {'topic_url': 'https://message-router:3905/events/AAI-EVENT'}, 'type': 'message_router'}, 'policy_pm_subscriber': {'dmaap_info': {'topic_url': 'https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT'}, 'type': 'message_router'}}}}
2022-09-24T04:56:36+0000 | MainThread | 139991929376072 | INFO | pmsh_service_main | main | ServiceName= | RequestID= | InvocationID= | Start polling PMSH_CL_INPUT topic on DMaaP MR.
2022-09-24T04:56:36+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName= | RequestID= | InvocationID= | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T04:56:36+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=4480be96-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=4480cd46-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T04:56:36+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName= | RequestID= | InvocationID= | Polling MR for XNF AAI events.
2022-09-24T04:56:36+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=4496b124-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=4496c48e-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T04:56:38+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=4480be96-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=4480cd46-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:56:38+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=4480be96-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=4480cd46-3bc5-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:56:38+0000 | MainThread | 139991929376072 | INFO | __init__ | launch_api_server | ServiceName= | RequestID= | InvocationID= | Launching secure http API server
2022-09-24T04:56:38+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=4496b124-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=4496c48e-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:56:38+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=4496b124-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=4496c48e-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:56:58+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=4496b124-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=4496c48e-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T04:56:58+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=519a920a-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=519a9796-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T04:56:59+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=519a920a-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=519a9796-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:56:59+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=519a920a-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=519a9796-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:57:03+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=4480be96-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=4480cd46-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T04:57:03+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=5484e330-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=5484e862-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T04:57:04+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=5484e330-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=5484e862-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:57:04+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=5484e330-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=5484e862-3bc5-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:57:19+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=519a920a-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=519a9796-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T04:57:19+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=5e6e7fb4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=5e6e82a2-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T04:57:20+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=5e6e7fb4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=5e6e82a2-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:57:20+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=5e6e7fb4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=5e6e82a2-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:57:29+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=5484e330-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=5484e862-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T04:57:29+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=6426060c-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=6426102a-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T04:57:30+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=6426060c-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=6426102a-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:57:30+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=6426060c-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=6426102a-3bc5-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:57:40+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=5e6e7fb4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=5e6e82a2-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T04:57:40+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=6b061322-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=6b06216e-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T04:57:42+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=6b061322-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=6b06216e-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:57:42+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=6b061322-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=6b06216e-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:57:55+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=6426060c-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=6426102a-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T04:57:55+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=73c8c04a-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=73c8c3d8-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T04:57:56+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=73c8c04a-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=73c8c3d8-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:57:56+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=73c8c04a-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=73c8c3d8-3bc5-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:58:02+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=6b061322-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=6b06216e-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T04:58:02+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=77aaeb34-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=77aaed28-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T04:58:03+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=77aaeb34-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=77aaed28-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:58:03+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=77aaeb34-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=77aaed28-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:58:21+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=73c8c04a-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=73c8c3d8-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T04:58:21+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=835bc372-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=835bd600-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T04:58:22+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=835bc372-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=835bd600-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:58:22+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=835bc372-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=835bd600-3bc5-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:58:23+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=77aaeb34-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=77aaed28-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T04:58:23+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=8449e534-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=8449e714-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T04:58:24+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=8449e534-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=8449e714-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:58:24+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=8449e534-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=8449e714-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:58:44+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=8449e534-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=8449e714-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T04:58:44+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=90df4834-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=90df4b04-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T04:58:45+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=90df4834-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=90df4b04-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:58:45+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=90df4834-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=90df4b04-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:58:47+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=835bc372-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=835bd600-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T04:58:47+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=92f615e4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=92f61a80-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T04:58:48+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=92f615e4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=92f61a80-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:58:48+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=92f615e4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=92f61a80-3bc5-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:59:05+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=90df4834-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=90df4b04-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T04:59:05+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9d759454-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=9d75a6ce-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T04:59:06+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9d759454-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=9d75a6ce-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:59:06+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=9d759454-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=9d75a6ce-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:59:13+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=92f615e4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=92f61a80-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T04:59:13+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=a2809cb4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=a2809fde-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T04:59:15+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=a2809cb4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=a2809fde-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:59:15+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=a2809cb4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=a2809fde-3bc5-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:59:26+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=9d759454-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=9d75a6ce-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T04:59:26+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=aa0b3dd6-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=aa0b416e-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T04:59:27+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=aa0b3dd6-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=aa0b416e-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 159, in _new_conn
    conn = connection.create_connection(
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 84, in create_connection
    raise err
  File "/opt/lib/python3.9/site-packages/urllib3/util/connection.py", line 74, in create_connection
    sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 670, in urlopen
    httplib_response = self._make_request(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 381, in _make_request
    self._validate_conn(conn)
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 978, in _validate_conn
    conn.connect()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 309, in connect
    conn = self._new_conn()
  File "/opt/lib/python3.9/site-packages/urllib3/connection.py", line 171, in _new_conn
    raise NewConnectionError(
urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 439, in send
    resp = conn.urlopen(
  File "/opt/lib/python3.9/site-packages/urllib3/connectionpool.py", line 726, in urlopen
    retries = retries.increment(
  File "/opt/lib/python3.9/site-packages/urllib3/util/retry.py", line 446, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 137, in get_from_topic
    response = session.get(f'{topic_url}/{consumer_group}/{consumer_id}'
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 546, in get
    return self.request('GET', url, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "/opt/lib/python3.9/site-packages/requests/sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "/opt/lib/python3.9/site-packages/requests/adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:59:27+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=aa0b3dd6-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=aa0b416e-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: HTTPSConnectionPool(host='message-router', port=3905): Max retries exceeded with url: /events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))
2022-09-24T04:59:40+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=a2809cb4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=a2809fde-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T04:59:40+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b2184000-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=b21849e2-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T04:59:40+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b2184000-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=b21849e2-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T04:59:40+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=b2184000-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=b21849e2-3bc5-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T04:59:47+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=aa0b3dd6-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=aa0b416e-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T04:59:47+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b6a2b3f8-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=b6a2b6aa-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T04:59:47+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b6a2b3f8-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=b6a2b6aa-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T04:59:47+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=b6a2b3f8-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=b6a2b6aa-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:00:05+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=b2184000-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=b21849e2-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:00:05+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c16497de-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=c1649a4a-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:00:05+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c16497de-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=c1649a4a-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:00:05+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=c16497de-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=c1649a4a-3bc5-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:00:07+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=b6a2b3f8-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=b6a2b6aa-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:00:07+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c2a77fda-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=c2a7826e-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:00:08+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c2a77fda-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=c2a7826e-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:00:08+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=c2a77fda-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=c2a7826e-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:00:28+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=c2a77fda-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=c2a7826e-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:00:28+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ceabf266-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=ceabf702-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:00:28+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ceabf266-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=ceabf702-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:00:28+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=ceabf266-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=ceabf702-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:00:30+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=c16497de-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=c1649a4a-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:00:30+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=d05973d6-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=d0597638-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:00:31+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=d05973d6-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=d0597638-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:00:31+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=d05973d6-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=d0597638-3bc5-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:00:48+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=ceabf266-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=ceabf702-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:00:48+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=dabcdeee-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=dabce290-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:00:48+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=dabcdeee-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=dabce290-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:00:48+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=dabcdeee-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=dabce290-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:00:56+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=d05973d6-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=d0597638-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:00:56+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=df65fda4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=df660100-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:00:56+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=df65fda4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=df660100-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:00:56+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=df65fda4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=df660100-3bc5-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:01:08+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=dabcdeee-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=dabce290-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:01:08+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=e6cdd3f0-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=e6cde7f0-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:01:08+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=e6cdd3f0-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=e6cde7f0-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:01:08+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=e6cdd3f0-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=e6cde7f0-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:01:21+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=df65fda4-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=df660100-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:01:21+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ee65e792-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=ee65f0c0-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:01:21+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ee65e792-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=ee65f0c0-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:01:21+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=ee65e792-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=ee65f0c0-3bc5-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:01:28+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=e6cdd3f0-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=e6cde7f0-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:01:28+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=f2e6c8ae-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=f2e6d8d0-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:01:29+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=f2e6c8ae-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=f2e6d8d0-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:01:29+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=f2e6c8ae-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=f2e6d8d0-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:01:46+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=ee65e792-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=ee65f0c0-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:01:46+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=fd660db2-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=fd661050-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:01:46+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=fd660db2-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=fd661050-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:01:46+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=fd660db2-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=fd661050-3bc5-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:01:49+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=f2e6c8ae-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=f2e6d8d0-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:01:49+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=fef6cbee-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=fef6ce50-3bc5-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:01:49+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=fef6cbee-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=fef6ce50-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:01:49+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=fef6cbee-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=fef6ce50-3bc5-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:02:09+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=fef6cbee-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=fef6ce50-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:02:09+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=0af44bba-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=0af464e2-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:02:09+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=0af44bba-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=0af464e2-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:02:09+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=0af44bba-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=0af464e2-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:02:11+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=fd660db2-3bc5-11ed-bd1a-c27a2d1d72f5 | InvocationID=fd661050-3bc5-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:02:11+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=0c5e7ab6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=0c5e7ee4-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:02:11+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=0c5e7ab6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=0c5e7ee4-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:02:11+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=0c5e7ab6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=0c5e7ee4-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:02:29+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=0af44bba-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=0af464e2-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:02:29+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=170088d8-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=17008c48-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:02:29+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=170088d8-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=17008c48-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:02:29+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=170088d8-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=17008c48-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:02:36+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=0c5e7ab6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=0c5e7ee4-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:02:36+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=1b621bda-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=1b621edc-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:02:37+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=1b621bda-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=1b621edc-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:02:37+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=1b621bda-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=1b621edc-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:02:49+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=170088d8-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=17008c48-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:02:49+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=2332bdc4-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=2337285a-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:02:50+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=2332bdc4-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=2337285a-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:02:50+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=2332bdc4-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=2337285a-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:03:02+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=1b621bda-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=1b621edc-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:03:02+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=2a76b946-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=2a76bc84-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:03:02+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=2a76b946-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=2a76bc84-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:03:02+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=2a76b946-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=2a76bc84-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:03:10+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=2332bdc4-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=2337285a-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:03:10+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=2f73f620-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=2f73fc2e-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:03:10+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=2f73f620-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=2f73fc2e-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:03:10+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=2f73f620-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=2f73fc2e-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:03:27+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=2a76b946-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=2a76bc84-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:03:27+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=3992726c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=39928d60-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:03:27+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=3992726c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=39928d60-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:03:27+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=3992726c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=39928d60-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:03:30+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=2f73f620-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=2f73fc2e-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:03:30+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=3b8660f6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=3b8662cc-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:03:30+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=3b8660f6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=3b8662cc-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:03:31+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=3b8660f6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=3b8662cc-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:03:51+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=3b8660f6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=3b8662cc-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:03:51+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=47a815aa-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=47a81bd6-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:03:51+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=47a815aa-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=47a81bd6-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:03:51+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=47a815aa-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=47a81bd6-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:03:52+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=3992726c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=39928d60-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:03:52+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=48a964cc-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=48a97dae-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:03:52+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=48a964cc-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=48a97dae-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:03:52+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=48a964cc-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=48a97dae-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:04:11+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=47a815aa-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=47a81bd6-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:04:11+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=53df3e3e-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=53df4910-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:04:11+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=53df3e3e-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=53df4910-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:04:11+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=53df3e3e-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=53df4910-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:04:17+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=48a964cc-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=48a97dae-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:04:17+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=57bceaa6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=57bcef56-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:04:18+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=57bceaa6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=57bcef56-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:04:18+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=57bceaa6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=57bcef56-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:04:31+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=53df3e3e-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=53df4910-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:04:31+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=600a707a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=600a7d7c-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:04:32+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=600a707a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=600a7d7c-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:04:32+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=600a707a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=600a7d7c-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:04:43+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=57bceaa6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=57bcef56-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:04:43+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=66deaede-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=66deb172-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:04:43+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=66deaede-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=66deb172-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:04:43+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=66deaede-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=66deb172-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:04:52+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=600a707a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=600a7d7c-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:04:52+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=6c1e4b2a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=6c1e5188-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:04:52+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=6c1e4b2a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=6c1e5188-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:04:52+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=6c1e4b2a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=6c1e5188-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:05:08+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=66deaede-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=66deb172-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:05:08+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=75ef8efc-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=75ef9244-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:05:08+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=75ef8efc-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=75ef9244-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:05:08+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=75ef8efc-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=75ef9244-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:05:12+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=6c1e4b2a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=6c1e5188-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:05:12+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=782a1ec6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=782a2196-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:05:12+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=782a1ec6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=782a2196-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:05:12+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=782a1ec6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=782a2196-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:05:32+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=782a1ec6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=782a2196-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:05:32+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=84363402-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=84363b32-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:05:32+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=84363402-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=84363b32-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:05:32+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=84363402-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=84363b32-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:05:33+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=75ef8efc-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=75ef9244-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:05:33+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=84fa4cc0-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=84fa5814-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:05:34+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=84fa4cc0-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=84fa5814-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:05:34+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=84fa4cc0-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=84fa5814-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:05:52+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=84363402-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=84363b32-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:05:52+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=903d479a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=903d4ac4-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:05:52+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=903d479a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=903d4ac4-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:05:52+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=903d479a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=903d4ac4-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:05:59+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=84fa4cc0-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=84fa5814-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:05:59+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9405d568-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=9405d770-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:05:59+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9405d568-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=9405d770-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:05:59+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=9405d568-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=9405d770-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:06:12+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=903d479a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=903d4ac4-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:06:12+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9c3a9cfa-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=9c3a9fd4-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:06:13+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9c3a9cfa-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=9c3a9fd4-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:06:13+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=9c3a9cfa-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=9c3a9fd4-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:06:24+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=9405d568-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=9405d770-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:06:24+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=a2fe3204-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=a2fe3574-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:06:24+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=a2fe3204-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=a2fe3574-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:06:24+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=a2fe3204-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=a2fe3574-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:06:33+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=9c3a9cfa-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=9c3a9fd4-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:06:33+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=a8550b06-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=a8551420-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:06:33+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=a8550b06-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=a8551420-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:06:33+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=a8550b06-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=a8551420-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:06:49+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=a2fe3204-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=a2fe3574-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:06:49+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b1f5da8c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=b1f5dd5c-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:06:49+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b1f5da8c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=b1f5dd5c-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:06:49+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=b1f5da8c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=b1f5dd5c-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:06:53+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=a8550b06-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=a8551420-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:06:53+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b454f7d6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=b454fa10-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:06:53+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b454f7d6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=b454fa10-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:06:53+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=b454f7d6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=b454fa10-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:07:13+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=b454f7d6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=b454fa10-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:07:13+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c051cc30-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=c051cf32-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:07:13+0000 | aai_event_thread | 139991878638368 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c051cc30-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=c051cf32-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:07:13+0000 | aai_event_thread | 139991878638368 | ERROR | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=c051cc30-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=c051cf32-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to process AAI event due to: 404 Client Error: Not Found for url: https://message-router:3905/events/AAI-EVENT/dcae_pmsh_cg/dcae_pmsh_aai_event?timeout=5000
2022-09-24T05:07:14+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=b1f5da8c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=b1f5dd5c-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:07:14+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c0ea1d8c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=c0ea1f58-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:07:14+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c0ea1d8c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=c0ea1f58-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:07:14+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=c0ea1d8c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=c0ea1f58-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:07:33+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=c051cc30-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=c051cf32-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:07:33+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=cc4e312c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=cc4e34c4-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:07:39+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=c0ea1d8c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=c0ea1f58-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:07:39+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=cfe26c9a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=cfe27bb8-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:07:39+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=cfe26c9a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=cfe27bb8-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:07:39+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=cfe26c9a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=cfe27bb8-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:07:58+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=cc4e312c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=cc4e34c4-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:07:58+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=db48c304-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=db48cac0-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:08:04+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=cfe26c9a-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=cfe27bb8-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:08:04+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=def9ae28-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=def9b01c-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:08:05+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=def9ae28-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=def9b01c-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:08:05+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=def9ae28-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=def9b01c-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:08:18+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=db48c304-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=db48cac0-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:08:18+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=e754f6c2-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=e754f9b0-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:08:30+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=def9ae28-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=def9b01c-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:08:30+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=edf6f64c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=edf6f8cc-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:08:30+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=edf6f64c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=edf6f8cc-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:08:30+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=edf6f64c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=edf6f8cc-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:08:39+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=e754f6c2-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=e754f9b0-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:08:39+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=f360a5c4-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=f360a998-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:08:55+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=edf6f64c-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=edf6f8cc-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:08:55+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=fce8baf0-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=fce8bdb6-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:08:55+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=fce8baf0-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=fce8bdb6-3bc6-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:08:55+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=fce8baf0-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=fce8bdb6-3bc6-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:08:59+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=f360a5c4-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=f360a998-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:08:59+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ff74dcd6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=ff74df60-3bc6-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:09:19+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=ff74dcd6-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=ff74df60-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:09:19+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=0b983e90-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=0b98425a-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:09:20+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=fce8baf0-3bc6-11ed-bd1a-c27a2d1d72f5 | InvocationID=fce8bdb6-3bc6-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:09:20+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=0bdecde2-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=0bded03a-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:09:20+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=0bdecde2-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=0bded03a-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:09:20+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=0bdecde2-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=0bded03a-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:09:40+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=0b983e90-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=0b98425a-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:09:40+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=17f484b4-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=17f486da-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:09:45+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=0bdecde2-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=0bded03a-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:09:45+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=1ad0cd6e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=1ad0cf3a-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:09:45+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=1ad0cd6e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=1ad0cf3a-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:09:45+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=1ad0cd6e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=1ad0cf3a-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:10:05+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=17f484b4-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=17f486da-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:10:05+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=26ca064e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=26ca0842-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:10:10+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=1ad0cd6e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=1ad0cf3a-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:10:10+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=29c5bbcc-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=29c5c176-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:10:10+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=29c5bbcc-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=29c5c176-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:10:10+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=29c5bbcc-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=29c5c176-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:10:30+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=26ca064e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=26ca0842-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:10:30+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=35aa1c80-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=35aa1fe6-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:10:35+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=29c5bbcc-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=29c5c176-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:10:35+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=38cd4e32-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=38cd529c-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:10:35+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=38cd4e32-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=38cd529c-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:10:35+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=38cd4e32-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=38cd529c-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:10:55+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=35aa1c80-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=35aa1fe6-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:10:55+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=447b44be-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=447b48ec-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:11:00+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=38cd4e32-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=38cd529c-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:11:00+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=47c86d7c-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=47c8702e-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:11:00+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=47c86d7c-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=47c8702e-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:11:00+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=47c86d7c-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=47c8702e-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:11:20+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=447b44be-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=447b48ec-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:11:20+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=5348537e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=53485a4a-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:11:25+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=47c86d7c-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=47c8702e-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:11:25+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=56ba576e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=56ba5980-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:11:25+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=56ba576e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=56ba5980-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:11:25+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=56ba576e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=56ba5980-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:11:44+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=5348537e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=53485a4a-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:11:44+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=621aa9f6-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=621aac80-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:11:50+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=56ba576e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=56ba5980-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:11:50+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=65afc2f4-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=65afc4f2-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:11:50+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=65afc2f4-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=65afc4f2-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:11:50+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=65afc2f4-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=65afc4f2-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:12:09+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=621aa9f6-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=621aac80-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:12:09+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=70e65c50-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=70e65f16-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:12:15+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=65afc2f4-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=65afc4f2-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:12:15+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=74a1369e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=74a138ce-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:12:16+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=74a1369e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=74a138ce-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:12:16+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=74a1369e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=74a138ce-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:12:34+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=70e65c50-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=70e65f16-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:12:34+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=7fb50358-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=7fb505b0-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:12:41+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=74a1369e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=74a138ce-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:12:41+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=8394477c-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=83944a1a-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:12:41+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=8394477c-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=83944a1a-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:12:41+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=8394477c-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=83944a1a-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:12:59+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=7fb50358-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=7fb505b0-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:12:59+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=8e88fccc-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=8e88ff1a-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:13:06+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=8394477c-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=83944a1a-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:13:06+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=928cc934-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=928ccb0a-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:13:06+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=928cc934-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=928ccb0a-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:13:06+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=928cc934-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=928ccb0a-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:13:24+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=8e88fccc-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=8e88ff1a-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:13:24+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9d51efd4-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=9d51f1b4-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:13:31+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=928cc934-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=928ccb0a-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:13:31+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=a17fe796-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=a17fe9f8-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:13:31+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=a17fe796-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=a17fe9f8-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:13:31+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=a17fe796-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=a17fe9f8-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:13:49+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=9d51efd4-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=9d51f1b4-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:13:49+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ac2105e0-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=ac2109dc-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:13:56+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=a17fe796-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=a17fe9f8-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:13:56+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b07390fe-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=b0739360-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:13:56+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b07390fe-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=b0739360-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:13:56+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=b07390fe-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=b0739360-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:14:13+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=ac2105e0-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=ac2109dc-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:14:13+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=baedb2e4-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=baedbed8-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:14:21+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=b07390fe-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=b0739360-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:14:21+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=bf671a2c-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=bf671dce-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:14:21+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=bf671a2c-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=bf671dce-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:14:21+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=bf671a2c-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=bf671dce-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:14:38+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=baedb2e4-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=baedbed8-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:14:38+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c9b89258-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=c9b894ce-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:14:46+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=bf671a2c-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=bf671dce-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:14:46+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ce57eb42-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=ce57eeb2-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:14:46+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ce57eb42-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=ce57eeb2-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:14:46+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=ce57eb42-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=ce57eeb2-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:15:03+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=c9b89258-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=c9b894ce-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:15:03+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=d883b8f8-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=d883bb32-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:15:11+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=ce57eb42-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=ce57eeb2-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:15:11+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=dd48de54-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=dd48e03e-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:15:11+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=dd48de54-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=dd48e03e-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:15:11+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=dd48de54-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=dd48e03e-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:15:28+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=d883b8f8-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=d883bb32-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:15:28+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=e752943a-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=e752961a-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:15:36+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=dd48de54-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=dd48e03e-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:15:36+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ec39cd2e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=ec39cf86-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:15:36+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ec39cd2e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=ec39cf86-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:15:36+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=ec39cd2e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=ec39cf86-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:15:53+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=e752943a-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=e752961a-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:15:53+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=f6224f6e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=f62251c6-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:16:01+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=ec39cd2e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=ec39cf86-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:16:01+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=fb2caba8-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=fb2cad88-3bc7-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:16:01+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=fb2caba8-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=fb2cad88-3bc7-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:16:01+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=fb2caba8-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=fb2cad88-3bc7-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:16:18+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=f6224f6e-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=f62251c6-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:16:18+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=04f3d0f8-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=04f3db66-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:16:26+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=fb2caba8-3bc7-11ed-bd1a-c27a2d1d72f5 | InvocationID=fb2cad88-3bc7-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:16:26+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=0a1e76e6-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=0a1e7916-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:16:26+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=0a1e76e6-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=0a1e7916-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:16:26+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=0a1e76e6-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=0a1e7916-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:16:42+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=04f3d0f8-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=04f3db66-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:16:42+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=13c8232c-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=13c83a9c-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:16:51+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=0a1e76e6-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=0a1e7916-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:16:51+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=190f4d42-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=190f4f7c-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:16:51+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=190f4d42-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=190f4f7c-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:16:51+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=190f4d42-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=190f4f7c-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:17:07+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=13c8232c-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=13c83a9c-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:17:07+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=229b84b6-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=229b86a0-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:17:16+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=190f4d42-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=190f4f7c-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:17:16+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=2801d75c-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=2801d93c-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:17:16+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=2801d75c-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=2801d93c-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:17:16+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=2801d75c-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=2801d93c-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:17:32+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=229b84b6-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=229b86a0-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:17:32+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=3168d764-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=3168da0c-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:17:41+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=2801d75c-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=2801d93c-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:17:41+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=36f21920-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=36f21d76-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:17:42+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=36f21920-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=36f21d76-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:17:42+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=36f21920-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=36f21d76-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:17:57+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=3168d764-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=3168da0c-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:17:57+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=4033936a-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=4033984c-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:18:07+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=36f21920-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=36f21d76-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:18:07+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=45e805c0-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=45e808a4-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:18:07+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=45e805c0-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=45e808a4-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:18:07+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=45e805c0-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=45e808a4-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:18:22+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=4033936a-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=4033984c-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:18:22+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=4efe200e-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=4efe22b6-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:18:32+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=45e805c0-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=45e808a4-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:18:32+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=54e10b30-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=54e10db0-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:18:32+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=54e10b30-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=54e10db0-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:18:32+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=54e10b30-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=54e10db0-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:18:47+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=4efe200e-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=4efe22b6-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:18:47+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=5dc6e8fa-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=5dc6ee36-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:18:57+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=54e10b30-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=54e10db0-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:18:57+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=63d22502-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=63d22b92-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:18:57+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=63d22502-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=63d22b92-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:18:57+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=63d22502-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=63d22b92-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:19:12+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=5dc6e8fa-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=5dc6ee36-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:19:12+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=6c9ee7c4-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=6c9ee9c2-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:19:22+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=63d22502-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=63d22b92-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:19:22+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=72c2dc96-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=72c2de80-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:19:22+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=72c2dc96-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=72c2de80-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:19:22+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=72c2dc96-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=72c2de80-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:19:36+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=6c9ee7c4-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=6c9ee9c2-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:19:36+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=7b6c39f0-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=7b6c3dba-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:19:47+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=72c2dc96-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=72c2de80-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:19:47+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=81b4be18-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=81b4c084-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:19:47+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=81b4be18-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=81b4c084-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:19:47+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=81b4be18-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=81b4c084-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:20:01+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=7b6c39f0-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=7b6c3dba-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:20:01+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=8a3dd4ac-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=8a3dd722-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:20:12+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=81b4be18-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=81b4c084-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:20:12+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=90aa269c-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=90aa293a-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:20:12+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=90aa269c-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=90aa293a-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:20:12+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=90aa269c-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=90aa293a-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:20:26+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=8a3dd4ac-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=8a3dd722-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:20:26+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=991d860c-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=991d89c2-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:20:37+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=90aa269c-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=90aa293a-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:20:37+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9fabc6be-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=9fabcb8c-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:20:37+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9fabc6be-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=9fabcb8c-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:20:37+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=9fabc6be-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=9fabcb8c-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:20:51+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=991d860c-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=991d89c2-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:20:51+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=a80cf5ee-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=a80d03fe-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:21:02+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=9fabc6be-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=9fabcb8c-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:21:02+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=aea5244e-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=aea52638-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:21:02+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=aea5244e-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=aea52638-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:21:02+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=aea5244e-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=aea52638-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:21:16+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=a80cf5ee-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=a80d03fe-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:21:16+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b6f279e4-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=b6f27e6c-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:21:27+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=aea5244e-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=aea52638-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:21:27+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=bda258a4-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=bda25b9c-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:21:28+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=bda258a4-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=bda25b9c-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:21:28+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=bda258a4-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=bda25b9c-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:21:41+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=b6f279e4-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=b6f27e6c-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:21:41+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c5e6dd28-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=c5e6e02a-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:21:53+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=bda258a4-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=bda25b9c-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:21:53+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=cca6cf92-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=cca6d23a-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:21:53+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=cca6cf92-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=cca6d23a-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:21:53+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=cca6cf92-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=cca6d23a-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:22:06+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=c5e6dd28-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=c5e6e02a-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:22:06+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=d4b7b2b4-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=d4b7b4c6-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:22:18+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=cca6cf92-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=cca6d23a-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:22:18+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=dba11bce-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=dba11e3a-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:22:18+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=dba11bce-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=dba11e3a-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:22:18+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=dba11bce-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=dba11e3a-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:22:31+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=d4b7b2b4-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=d4b7b4c6-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:22:31+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=e39e8ee2-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=e39e9716-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:22:43+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=dba11bce-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=dba11e3a-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:22:43+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=eaa01472-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=eaa01706-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:22:43+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=eaa01472-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=eaa01706-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:22:43+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=eaa01472-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=eaa01706-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:22:56+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=e39e8ee2-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=e39e9716-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:22:56+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=f28e686e-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=f28e6f4e-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:23:08+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=eaa01472-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=eaa01706-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:23:08+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=f99a7008-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=f99a797c-3bc8-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:23:08+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=f99a7008-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=f99a797c-3bc8-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:23:08+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=f99a7008-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=f99a797c-3bc8-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:23:21+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=f28e686e-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=f28e6f4e-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:23:21+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=018166aa-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=01818b80-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:23:33+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=f99a7008-3bc8-11ed-bd1a-c27a2d1d72f5 | InvocationID=f99a797c-3bc8-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:23:33+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=089b6030-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=089b6d6e-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:23:34+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=089b6030-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=089b6d6e-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:23:34+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=089b6030-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=089b6d6e-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:23:46+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=018166aa-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=01818b80-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:23:46+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=1060ff3c-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=10610306-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:23:59+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=089b6030-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=089b6d6e-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:23:59+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=17bd92e0-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=17bd954c-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:23:59+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=17bd92e0-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=17bd954c-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:23:59+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=17bd92e0-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=17bd954c-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:24:11+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=1060ff3c-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=10610306-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:24:11+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=1f3e2a84-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=1f3e2e26-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:24:24+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=17bd92e0-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=17bd954c-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:24:24+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=26b5128c-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=26b51462-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:24:24+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=26b5128c-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=26b51462-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:24:24+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=26b5128c-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=26b51462-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:24:36+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=1f3e2a84-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=1f3e2e26-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:24:36+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=2e0fac4a-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=2e0fafe2-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:24:49+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=26b5128c-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=26b51462-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:24:49+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=35a7fa34-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=35a7fcaa-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:24:49+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=35a7fa34-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=35a7fcaa-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:24:49+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=35a7fa34-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=35a7fcaa-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:25:01+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=2e0fac4a-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=2e0fafe2-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:25:01+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=3cdab738-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=3cdab9ea-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:25:14+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=35a7fa34-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=35a7fcaa-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:25:14+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=44a10c06-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=44a10dd2-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:25:14+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=44a10c06-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=44a10dd2-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:25:14+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=44a10c06-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=44a10dd2-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:25:26+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=3cdab738-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=3cdab9ea-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:25:26+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=4bad087e-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=4bad0d06-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:25:39+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=44a10c06-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=44a10dd2-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:25:39+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=53947cc0-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=53947f04-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:25:39+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=53947cc0-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=53947f04-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:25:39+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=53947cc0-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=53947f04-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:25:51+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=4bad087e-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=4bad0d06-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:25:51+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=5a815472-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=5a81590e-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:26:04+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=53947cc0-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=53947f04-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:26:04+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=62876b66-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=62876ddc-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:26:04+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=62876b66-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=62876ddc-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:26:04+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=62876b66-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=62876ddc-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:26:16+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=5a815472-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=5a81590e-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:26:16+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=6962464a-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=69624e88-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:26:29+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=62876b66-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=62876ddc-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:26:29+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=718419d4-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=718422ee-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:26:30+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=718419d4-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=718422ee-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:26:30+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=718419d4-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=718422ee-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:26:40+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=6962464a-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=69624e88-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:26:40+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=7831fd0a-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=78320390-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:26:55+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=718419d4-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=718422ee-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:26:55+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=80a4d9a8-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=80a4e272-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:26:55+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=80a4d9a8-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=80a4e272-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:26:55+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=80a4d9a8-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=80a4e272-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:27:05+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=7831fd0a-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=78320390-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:27:05+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=8718e2b6-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=8718fba2-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:27:20+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=80a4d9a8-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=80a4e272-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:27:20+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=8f99089e-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=8f990b64-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:27:20+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=8f99089e-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=8f990b64-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:27:20+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=8f99089e-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=8f990b64-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:27:30+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=8718e2b6-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=8718fba2-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:27:30+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=95e493bc-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=95e49600-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:27:45+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=8f99089e-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=8f990b64-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:27:45+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9e89dac2-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=9e89dd60-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:27:45+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9e89dac2-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=9e89dd60-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:27:45+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=9e89dac2-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=9e89dd60-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:27:55+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=95e493bc-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=95e49600-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:27:55+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=a4abc654-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=a4abc848-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:28:10+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=9e89dac2-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=9e89dd60-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:28:10+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ad79be30-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=ad79c092-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:28:10+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ad79be30-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=ad79c092-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:28:10+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=ad79be30-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=ad79c092-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:28:20+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=a4abc654-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=a4abc848-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:28:20+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b37d1fe8-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=b37d22cc-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:28:35+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=ad79be30-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=ad79c092-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:28:35+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=bc6d3fa2-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=bc6d4b64-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:28:35+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=bc6d3fa2-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=bc6d4b64-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:28:35+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=bc6d3fa2-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=bc6d4b64-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:28:45+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=b37d1fe8-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=b37d22cc-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:28:45+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c2491fd6-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=c24921ac-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:29:00+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=bc6d3fa2-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=bc6d4b64-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:29:00+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=cb64b6a2-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=cb64b9b8-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:29:00+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=cb64b6a2-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=cb64b9b8-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:29:00+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=cb64b6a2-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=cb64b9b8-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:29:10+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=c2491fd6-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=c24921ac-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:29:10+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=d1141a2a-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=d1141c3c-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:29:25+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=cb64b6a2-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=cb64b9b8-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:29:25+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=da550c48-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=da550f72-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:29:25+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=da550c48-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=da550f72-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:29:25+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=da550c48-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=da550f72-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:29:34+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=d1141a2a-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=d1141c3c-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:29:34+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=dfdf0984-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=dfdf0b96-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:29:50+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=da550c48-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=da550f72-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:29:50+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=e94a6f90-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=e94a7332-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:29:50+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=e94a6f90-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=e94a7332-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:29:50+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=e94a6f90-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=e94a7332-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:29:59+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=dfdf0984-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=dfdf0b96-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:29:59+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=eea9fc30-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=eea9fec4-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:30:15+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=e94a6f90-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=e94a7332-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:30:15+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=f8402bc0-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=f8402e5e-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:30:15+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=f8402bc0-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=f8402e5e-3bc9-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:30:15+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=f8402bc0-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=f8402e5e-3bc9-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:30:24+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=eea9fc30-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=eea9fec4-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:30:24+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=fd787516-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=fd78776e-3bc9-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:30:40+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=f8402bc0-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=f8402e5e-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:30:40+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=07331a84-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=07331cfa-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:30:40+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=07331a84-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=07331cfa-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:30:40+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=07331a84-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=07331cfa-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:30:49+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=fd787516-3bc9-11ed-bd1a-c27a2d1d72f5 | InvocationID=fd78776e-3bc9-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:30:49+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=0c472ce0-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=0c473244-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:31:05+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=07331a84-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=07331cfa-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:31:05+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=1623e78a-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=1623e960-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:31:06+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=1623e78a-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=1623e960-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:31:06+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=1623e78a-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=1623e960-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:31:14+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=0c472ce0-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=0c473244-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:31:14+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=1b1ae3ce-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=1b1ae63a-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:31:31+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=1623e78a-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=1623e960-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:31:31+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=2518d750-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=2518d9f8-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:31:31+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=2518d750-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=2518d9f8-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:31:31+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=2518d750-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=2518d9f8-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:31:39+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=1b1ae3ce-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=1b1ae63a-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:31:39+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=29e5e93a-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=29e5ebe2-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:31:56+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=2518d750-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=2518d9f8-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:31:56+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=34115f34-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=341162c2-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:31:56+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=34115f34-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=341162c2-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:31:56+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=34115f34-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=341162c2-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:32:03+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=29e5e93a-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=29e5ebe2-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:32:03+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=38afe3e4-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=38aff33e-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:32:21+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=34115f34-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=341162c2-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:32:21+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=4305e1e0-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=4305e55a-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:32:21+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=4305e1e0-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=4305e55a-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:32:21+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=4305e1e0-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=4305e55a-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:32:28+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=38afe3e4-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=38aff33e-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:32:28+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=477cb5b4-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=477cb802-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:32:46+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=4305e1e0-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=4305e55a-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:32:46+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=51f6b8be-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=51f6bb66-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:32:46+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=51f6b8be-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=51f6bb66-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:32:46+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=51f6b8be-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=51f6bb66-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:32:53+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=477cb5b4-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=477cb802-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:32:53+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=564dad32-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=564db2dc-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:33:11+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=51f6b8be-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=51f6bb66-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:33:11+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=60e7eaf0-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=60e7ef32-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:33:11+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=60e7eaf0-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=60e7ef32-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:33:11+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=60e7eaf0-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=60e7ef32-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:33:18+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=564dad32-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=564db2dc-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:33:18+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=6521ea94-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=6521ec6a-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:33:36+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=60e7eaf0-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=60e7ef32-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:33:36+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=6fd9de56-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=6fd9e158-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:33:36+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=6fd9de56-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=6fd9e158-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:33:36+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=6fd9de56-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=6fd9e158-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:33:43+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=6521ea94-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=6521ec6a-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:33:43+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=73edf964-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=73edfb4e-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:34:01+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=6fd9de56-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=6fd9e158-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:34:01+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=7eca3168-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=7eca33f2-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:34:01+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=7eca3168-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=7eca33f2-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:34:01+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=7eca3168-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=7eca33f2-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:34:08+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=73edf964-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=73edfb4e-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:34:08+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=82c096b8-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=82c0991a-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:34:26+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=7eca3168-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=7eca33f2-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:34:26+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=8dbc8144-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=8dbc8324-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:34:26+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=8dbc8144-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=8dbc8324-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:34:26+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=8dbc8144-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=8dbc8324-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:34:32+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=82c096b8-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=82c0991a-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:34:32+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9190406c-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=91904364-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:34:51+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=8dbc8144-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=8dbc8324-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:34:51+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9cae9764-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=9cae9976-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:34:51+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9cae9764-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=9cae9976-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:34:51+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=9cae9764-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=9cae9976-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:34:57+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=9190406c-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=91904364-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:34:57+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=a05c8a74-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=a05c8ca4-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:35:16+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=9cae9764-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=9cae9976-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:35:16+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=aba35976-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=aba35b92-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:35:16+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=aba35976-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=aba35b92-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:35:16+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=aba35976-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=aba35b92-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:35:22+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=a05c8a74-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=a05c8ca4-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:35:22+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=af248e9e-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=af24a64a-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:35:41+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=aba35976-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=aba35b92-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:35:41+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ba939c20-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=ba939df6-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:35:41+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ba939c20-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=ba939df6-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:35:41+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=ba939c20-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=ba939df6-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:35:47+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=af248e9e-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=af24a64a-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:35:47+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=bdf14962-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=bdf14c5a-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:36:06+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=ba939c20-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=ba939df6-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:36:06+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c9854d96-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=c9854f80-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:36:06+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c9854d96-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=c9854f80-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:36:06+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=c9854d96-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=c9854f80-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:36:12+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=bdf14962-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=bdf14c5a-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:36:12+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ccb97da2-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=ccb98266-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:36:31+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=c9854d96-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=c9854f80-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:36:31+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=d8760f5c-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=d876124a-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:36:31+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=d8760f5c-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=d876124a-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:36:31+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=d8760f5c-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=d876124a-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:36:37+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=ccb97da2-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=ccb98266-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:36:37+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=db8bf3fa-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=db8bf65c-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:36:57+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=d8760f5c-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=d876124a-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:36:57+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=e766206a-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=e7662358-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:36:57+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=e766206a-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=e7662358-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:36:57+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=e766206a-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=e7662358-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:37:01+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=db8bf3fa-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=db8bf65c-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:37:01+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=ea59ceac-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=ea59d0d2-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:37:22+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=e766206a-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=e7662358-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:37:22+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=f65691fe-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=f656944c-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:37:22+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=f65691fe-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=f656944c-3bca-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:37:22+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=f65691fe-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=f656944c-3bca-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:37:26+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=ea59ceac-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=ea59d0d2-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:37:26+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=f91fbb7c-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=f91fbe6a-3bca-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:37:47+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=f65691fe-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=f656944c-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:37:47+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=0546d14c-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=0546d3a4-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:37:47+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=0546d14c-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=0546d3a4-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:37:47+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=0546d14c-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=0546d3a4-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:37:51+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=f91fbb7c-3bca-11ed-bd1a-c27a2d1d72f5 | InvocationID=f91fbe6a-3bca-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:37:51+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=07f04cac-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=07f04e8c-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:38:12+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=0546d14c-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=0546d3a4-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:38:12+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=14370ab4-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=14370c94-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:38:12+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=14370ab4-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=14370c94-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:38:12+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=14370ab4-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=14370c94-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:38:16+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=07f04cac-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=07f04e8c-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:38:16+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=16bfb7c2-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=16bfb9d4-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:38:37+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=14370ab4-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=14370c94-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:38:37+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=232caf24-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=232cb6ae-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:38:37+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=232caf24-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=232cb6ae-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:38:37+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=232caf24-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=232cb6ae-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:38:41+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=16bfb7c2-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=16bfb9d4-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:38:41+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=258a9736-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=258a9a7e-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:39:02+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=232caf24-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=232cb6ae-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:39:02+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=321ee056-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=321ee2fe-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:39:02+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=321ee056-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=321ee2fe-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:39:02+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=321ee056-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=321ee2fe-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:39:06+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=258a9736-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=258a9a7e-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:39:06+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=3455a166-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=3455ad5a-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:39:27+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=321ee056-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=321ee2fe-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:39:27+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=41108be6-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=41109028-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:39:27+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=41108be6-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=41109028-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:39:27+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=41108be6-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=41109028-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:39:30+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=3455a166-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=3455ad5a-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:39:30+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=43211644-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=43211914-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:39:52+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=41108be6-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=41109028-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:39:52+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=5000a690-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=5000aa64-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:39:52+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=5000a690-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=5000aa64-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:39:52+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=5000a690-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=5000aa64-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:39:55+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=43211644-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=43211914-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:39:55+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=51f2b1d2-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=51f2b4fc-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:40:17+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=5000a690-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=5000aa64-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:40:17+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=5ef9a53e-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=5ef9a872-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:40:17+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=5ef9a53e-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=5ef9a872-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:40:17+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=5ef9a53e-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=5ef9a872-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:40:20+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=51f2b1d2-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=51f2b4fc-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:40:20+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=60c7a56e-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=60c7a7f8-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:40:42+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=5ef9a53e-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=5ef9a872-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:40:42+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=6def6902-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=6def84be-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:40:42+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=6def6902-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=6def84be-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:40:42+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=6def6902-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=6def84be-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:40:45+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=60c7a56e-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=60c7a7f8-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:40:45+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=6fa03c40-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=6fa03ec0-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:41:07+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=6def6902-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=6def84be-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:41:07+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=7ce0e17a-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=7ce0e440-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:41:07+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=7ce0e17a-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=7ce0e440-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:41:07+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=7ce0e17a-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=7ce0e440-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:41:10+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=6fa03c40-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=6fa03ec0-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:41:10+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=7e6a86c2-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=7e6a8960-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:41:32+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=7ce0e17a-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=7ce0e440-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:41:32+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=8bd1d9a0-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=8bd1dc7a-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:41:33+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=8bd1d9a0-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=8bd1dc7a-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:41:33+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=8bd1d9a0-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=8bd1dc7a-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:41:35+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=7e6a86c2-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=7e6a8960-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:41:35+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=8d39d7c0-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=8d39d9a0-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:41:58+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=8bd1d9a0-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=8bd1dc7a-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:41:58+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9ad18e46-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=9ad19116-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:41:58+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9ad18e46-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=9ad19116-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:41:58+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=9ad18e46-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=9ad19116-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:42:00+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=8d39d7c0-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=8d39d9a0-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:42:00+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=9c053790-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=9c0549ec-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:42:23+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=9ad18e46-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=9ad19116-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:42:23+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=a9c438a4-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=a9c43c14-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:42:23+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=a9c438a4-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=a9c43c14-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:42:23+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=a9c438a4-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=a9c43c14-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:42:24+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=9c053790-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=9c0549ec-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:42:24+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=aad5ff70-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=aad60182-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:42:48+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=a9c438a4-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=a9c43c14-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:42:48+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b8b65e78-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=b8b66058-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:42:48+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b8b65e78-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=b8b66058-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:42:48+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=b8b65e78-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=b8b66058-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:42:49+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=aad5ff70-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=aad60182-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:42:49+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=b9a19faa-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=b9a1a266-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:43:13+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=b8b65e78-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=b8b66058-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:43:13+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c7a98f0e-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=c7a99238-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:43:13+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c7a98f0e-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=c7a99238-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:43:13+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=c7a98f0e-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=c7a99238-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:43:14+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=b9a19faa-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=b9a1a266-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:43:14+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=c86e1752-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=c86e19be-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:43:38+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=c7a98f0e-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=c7a99238-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:43:38+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=d69b9214-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=d69b93d6-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:43:38+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=d69b9214-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=d69b93d6-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:43:38+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=d69b9214-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=d69b93d6-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:43:39+0000 | aai_event_thread | 139991878638368 | INFO | aai_event_handler | execute | ServiceName=dcae-pmsh | RequestID=c86e1752-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=c86e19be-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF AAI events.
2022-09-24T05:43:39+0000 | aai_event_thread | 139991878638368 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=d7356d1c-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=d735850e-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/AAI-EVENT
2022-09-24T05:44:03+0000 | policy_event_thread | 139991879699232 | INFO | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=d69b9214-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=d69b93d6-3bcb-11ed-bd1a-c27a2d1d72f5 | Polling MR for XNF activation/deactivation policy response events.
2022-09-24T05:44:03+0000 | policy_event_thread | 139991879699232 | INFO | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=e58cc59a-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=e58cc770-3bcb-11ed-bd1a-c27a2d1d72f5 | Fetching messages from MR topic: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT
2022-09-24T05:44:03+0000 | policy_event_thread | 139991879699232 | ERROR | pmsh_config | get_from_topic | ServiceName=dcae-pmsh | RequestID=e58cc59a-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=e58cc770-3bcb-11ed-bd1a-c27a2d1d72f5 | Failed to fetch message from MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
2022-09-24T05:44:03+0000 | policy_event_thread | 139991879699232 | ERROR | policy_response_handler | poll_policy_topic | ServiceName=dcae-pmsh | RequestID=e58cc59a-3bcb-11ed-bd1a-c27a2d1d72f5 | InvocationID=e58cc770-3bcb-11ed-bd1a-c27a2d1d72f5 | Error trying to poll policy response topic on MR: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000
Traceback (most recent call last):
  File "/opt/app/pmsh/bin/mod/policy_response_handler.py", line 59, in poll_policy_topic
    response_data = AppConfig.get_instance(). \
  File "/opt/app/pmsh/bin/mod/__init__.py", line 50, in wrapper
    return func(*args, **kwargs)
  File "/opt/app/pmsh/bin/mod/pmsh_config.py", line 143, in get_from_topic
    response.raise_for_status()
  File "/opt/lib/python3.9/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://message-router:3905/events/unauthenticated.PMSH_CL_INPUT/dcae_pmsh_cg/dcae_pmsh_policy_cl_input?timeout=5000