Albumen Kevin

Results 745 comments of Albumen Kevin

> @AlbumenJ I need to confirm whether these configurations are allowed to be set via `application.properties`: `dubbo.application.metadata.publish.delay=1000` `dubbo.application.metadata.proxy.delay=1000` These two keys are both stored in the `MetadataConstants` class. What do...

![image](https://github.com/apache/dubbo/assets/9292748/e98f874f-aba9-4a8c-954e-d8008ec0c7ad) ![image](https://github.com/apache/dubbo/assets/9292748/514f79f4-df48-4e42-a46a-2ab448d5f976) ![image](https://github.com/apache/dubbo/assets/9292748/32c266b3-35d0-4c52-913b-9090e0362f8d) It works on 3.2.10.

> when I test multi times,it also prints > > ``` > 2024-01-17 17:57:05.029 [DubboClientHandler-thread-1] DEBUG c.b.d.s.c.service.AsyncContextTest - ret: 1, testInfo: hi, dubbo > 2024-01-17 17:57:05.038 [DubboClientHandler-thread-1] DEBUG c.b.d.s.c.service.AsyncContextTest -...

> @AlbumenJ sorry, I have trouble pushing my repository to GitHub. i had tried many times, but still fail. you can create a maven project to test it. > >...

> > > @AlbumenJ sorry, I have trouble pushing my repository to GitHub. i had tried many times, but still fail. you can create a maven project to test it....

@bringwu In your demo, Dubbo process the result before set attachment. ![image](https://github.com/apache/dubbo/assets/9292748/9f91d080-8889-44e9-8c71-3db4eb519512) Add sleep before return to make sure that `serverResponseContext.setAttachment("tokenInfo", token)` has been processed. ![image](https://github.com/apache/dubbo/assets/9292748/5c47206d-628f-4aa6-8a48-ab20b2ef0e6a) Then it work.

> > @bringwu In your demo, Dubbo process the result before set attachment. > > ![image](https://private-user-images.githubusercontent.com/9292748/301764830-9f91d080-8889-44e9-8c71-3db4eb519512.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MDY4ODE1NDQsIm5iZiI6MTcwNjg4MTI0NCwicGF0aCI6Ii85MjkyNzQ4LzMwMTc2NDgzMC05ZjkxZDA4MC04ODg5LTQ0ZTktOGM3MS0zZGI0ZWI1MTk1MTIucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI0MDIwMiUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNDAyMDJUMTM0MDQ0WiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9ZDk2NzNjMmU4MjAzZWZmNTVlNjdjODE1YzIxMmRhY2NjODlhY2Y4Y2ZmZDE3NWNjN2QzMzIzNDIxZjU2Y2RhNSZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QmYWN0b3JfaWQ9MCZrZXlfaWQ9MCZyZXBvX2lkPTAifQ.BZoAXjc-cc0Be9lL0XP3RocP4qY3HRglrIg2-q2Ynh8) Add sleep before return to make sure that `serverResponseContext.setAttachment("tokenInfo", token)` has been processed. >...

Are you using triple protocol? This seems is a bug of connection management in Triple protocol. IMO, in order to solve this, we can: Remove connection itself in `org.apache.dubbo.remoting.api.connection.SingleProtocolConnectionManager#connections` before...

> Are you using triple protocol? This seems is a bug of connection management in Triple protocol. IMO, in order to solve this, we can: Remove connection itself in `org.apache.dubbo.remoting.api.connection.SingleProtocolConnectionManager#connections`...