diff --git a/pyproject.toml b/pyproject.toml index a9e4a46a..5e9be9bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "sap-cloud-sdk" -version = "0.35.0" +version = "0.35.1" description = "SAP Cloud SDK for Python" readme = "README.md" license = "Apache-2.0" diff --git a/src/sap_cloud_sdk/agentgateway/_lob.py b/src/sap_cloud_sdk/agentgateway/_lob.py index 83ad4ebd..7e3a91a9 100644 --- a/src/sap_cloud_sdk/agentgateway/_lob.py +++ b/src/sap_cloud_sdk/agentgateway/_lob.py @@ -18,8 +18,6 @@ ConsumptionLevel, ConsumptionOptions, ) -from sap_cloud_sdk.core.telemetry import Module - from sap_cloud_sdk.agentgateway._fragments import ( LABEL_KEY, FragmentLabel, @@ -89,10 +87,7 @@ def _fetch_auth_token( Raises: MCPServerNotFoundError: If no auth token is returned. """ - client = create_destination_client( - instance=_DESTINATION_INSTANCE, - _telemetry_source=Module.AGENTGATEWAY, - ) + client = create_destination_client(instance=_DESTINATION_INSTANCE) dest = client.get_destination( dest_name, level=ConsumptionLevel.PROVIDER_SUBACCOUNT, @@ -134,10 +129,7 @@ def get_ias_client_id_lob() -> str: Any exception raised by the destination client. """ dest_name = _ias_dest_name() - client = create_destination_client( - instance=_DESTINATION_INSTANCE, - _telemetry_source=Module.AGENTGATEWAY, - ) + client = create_destination_client(instance=_DESTINATION_INSTANCE) dest = client.get_destination( dest_name, level=ConsumptionLevel.PROVIDER_SUBACCOUNT,