赳昂
赳昂
> How did you start the Alpha Server? We may hit the same issue of #158, we may resolve the issue by starting only one scanner. Several Alpha Servers were...
> Can you try the latest released pack 0.4.0 which has the server side cluster? > There is only one event scanner started as a master in the cluster, if...
OK. Looking forward to fixing it. You are so hard-working. Thank you!
How to apply different strategies on the Load Balancer? Probably, I have not an in-depth study on it. Please give me some hints. Thank you! BTW, follow your advice, I...
Hi Jiang! I upgraded the Saga program(even though an informality version) and I read the source of 'LoadBalancedClusterMessageSender.java'. And I thought it was almost same between the last source and...
Yeah, I understood. I just hope that we can make it be better. That's all.
Hi Jiang! I have received your email. I intend to notice that issue at next week. And I will send message to your email later. Thanks a lot. At 2018-08-08...
我使用了这个方式,已经ok了,供兄弟们参考。 ```import os from fastapi import FastAPI import uvicorn import nest_asyncio from fastapi.middleware.cors import CORSMiddleware from datetime import datetime app = FastAPI() origins = ["*"] app.add_middleware(CORSMiddleware, allow_origins=origins, allow_credentials=True, allow_methods=["*"], allow_headers=["*"])...
> 我使用了这个方式,已经ok了,供兄弟们参考。 > > ``` > from fastapi import FastAPI > import uvicorn > import nest_asyncio > from fastapi.middleware.cors import CORSMiddleware > from datetime import datetime > > app =...