wangxusheng258813 commented on issue #583: Failed to get reconnected sender, all alpha server is down. URL: https://github.com/apache/servicecomb-pack/issues/583#issuecomment-549738534 我的调用场景是: A.method1(@SagaStart ) -> A.serviceMethod(@Compensable) A.method1(@SagaStart ) -> B.controllerMethod1 -> B.serviceMethod1(@Compensable) A.method1(@SagaStart ) -> B.controllerMethod2 -> B.serviceMethod2(@Compensable) 此场景下就出现了B报异常Failed to get reconnected sender, all alpha server is down. 在A中A.serviceMethod执行了补偿。 然后我改成了这样的: A.method1(@SagaStart ) -> A.serviceMethod(@Compensable) A.method1(@SagaStart ) -> B.controllerMethod1(@SagaStart) -> B.serviceMethod1(@Compensable) A.method1(@SagaStart ) -> B.controllerMethod2(@SagaStart) -> B.serviceMethod2(@Compensable) 正常调用执行没问题。 至于版本的问题是因为我刚开始用的是0.4.0后来出现了Failed to get reconnected sender, all alpha server is down这个问题 我想换个版本试试看能否解决 就换成了0.5.0结果一样。
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
