abpframework / abp

Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
https://abp.io
GNU Lesser General Public License v3.0
12.94k stars 3.45k forks source link

Microservice timeout after 100 sec #1671

Closed chai93323 closed 4 years ago

chai93323 commented 5 years ago

MicroService Timeout after long running task. (over 100 second) System.OperationCanceledException: The operation was canceled. at System.Threading.CancellationToken.ThrowOperationCanceledException()

Is there any setting to extend the timeout?

hikalkan commented 5 years ago

Can you write more details, so we can exactly know where to introduce an option for it.

cnfanhua commented 4 years ago

Abp Version: vNext 2.9.0 .Net Core: 3.1.103

I have the same problem. The API is always pending and then it will time out.

2020-06-09 16-12-39屏幕截图

cnfanhua commented 4 years ago

The problem is solved. The reason is that redis is not installed. It's a bug?

realLiangshiwei commented 4 years ago

@cnfanhua No, the applications use Redis as as distributed cache. So, you need to have Redis installed & running.

cnfanhua commented 4 years ago

@liangshiw thanks.