Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

245
Views
Polly .Net shut down application gracefully with IHostApplicationLifetime

The end outcome is to shut down the application if a specific type of exception (DatabaseException) has occurred.

However the current method HandleDatabaseException does not stop the application, the execution will carry on. Even though the _applicationLifetime.Stop() is executed.

private IHostApplicationLifetime _applicationLifetime;

public void CreatePolcy() 
{
    var policy = Policy
                .Handle<DatabaseException>(ex => HandleDatabaseException(ex))
                .WaitAndRetryForever(
                    retryAttempt => TimeSpan.FromSeconds(Math.Pow(2, retryAttempt)),
                    (exception, timespan) => HandleRetry(exception, timespan, stoppingToken));
}

public bool HandleDatabaseException(Exception ex) 
{
   _applicationLifetime.Stop();

   return true;
}
over 4 years ago · Santiago Trujillo
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!