Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7587425
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T19:40:20+00:00 2026-05-30T19:40:20+00:00

When developing a Tornado application, I frequently want to restart the server to pick

  • 0

When developing a Tornado application, I frequently want to restart the server to pick up new changes. I hit ctrl-c to stop the server, but with Tornado, this seems to be very slow. It waits for many seconds before shutting down, or doesn’t shut down at all when issued a ctrl-c.

What’s weird, is if, after clicking ctrl-c, I make a new request to the server (by, for example, refreshing my browser that is pointing at the server), it shuts down right away.

Anyone know how to explain this or fix it? Anyone experienced something similar?

(Note, this is on Windows.)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T19:40:22+00:00Added an answer on May 30, 2026 at 7:40 pm

    In Python, signals are always handled by the main thread. If the IOLoop is run from the main thread, it will block it when server is idle and waiting for IO. As a result, all signals will be pending on the thread to wake up. That explains why sending a request shuts the server down.

    UPDATE: You can try something like this:

    def set_ping(ioloop, timeout):
        ioloop.add_timeout(timeout, lambda: set_ping(ioloop, timeout))
    

    and then:

    ioloop = tornado.ioloop.IOLoop.instance()
    set_ping(ioloop, timedelta(seconds=2))
    ioloop.start()
    

    when you start the loop. As a result, select will be called with 2.0 seconds timeout, preventing the blocking. (See also IOLoop Timeouts)

    (Note: I could not reproduce your situation on Linux, even though I manually set select to be used, so I cannot give 100% guarantee that this will help, but sounds plausible)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Developing a C# .NET 2.0 WinForm Application. Need the application to close and restart
When developing a new web based application which version of html should you aim
Developing an application for Android, i want to record data that will be usefull
im developing windows application using c#. i want to close the application and show
Developing an HTML 5 application on new iPad's Mobile Safari iOS 5 that displays
iam developing one application.In that i use the search bar for search the data.But
Developing a web application that I've registered with Twitter. In this app, I might
Developing a .NET WinForms application: how can I check if the window is in
Developing a heavily XML-based Java-application, I recently encountered an interesting problem on Ubuntu Linux.
Developing server side code i finally got my eyes X-crossed trying to write -

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.