You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GatewayTraceGrpcServer is a spring bean which expose 11800 trace port.
ApmInitializer is also a spring bean which initializes trace initialization jobs, but it implements ApplicationRunner interface, which makes ApmInitializer runs after GatewayTraceGrpcServer.
This will cause the request to enter the server before the initialization task has completed.
To Reproduce
Expected behavior
Additional Information
The text was updated successfully, but these errors were encountered:
Describe this problem
GatewayTraceGrpcServer
is a spring bean which expose 11800 trace port.ApmInitializer
is also a spring bean which initializes trace initialization jobs, but it implementsApplicationRunner
interface, which makesApmInitializer
runs afterGatewayTraceGrpcServer
.This will cause the request to enter the server before the initialization task has completed.
To Reproduce
Expected behavior
Additional Information
The text was updated successfully, but these errors were encountered: