How to change solace client name

Hi @Tamimi ,
Thanks for your additional information.
I have tried your suggestion
broker_props = {    “solace.messaging.transport.host”: os.environ.get(‘SOLACE_HOST’) or “tcp://localhost:20061,tcp://localhost:55555,tcp://localhost:55554”,    “solace.messaging.service.vpn-name”: os.environ.get(‘SOLACE_VPN’) or “default”,    “solace.messaging.authentication.scheme.basic.username”: “hello_client”,    “solace.messaging.authentication.scheme.basic.password”: “hello_client_pw”,    “solace.messaging.client.name”: “hello_test_name”    } messaging_service = MessagingService.builder().from_properties(broker_props)\                     .with_reconnection_retry_strategy(RetryStrategy.parametrized_retry(20,3))\                     .build()

The name is still not updated.
I am using python api with version: solace-pubsubplus==1.2.1
I would like to ask if there is anything I missed ?
Thanks