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

  • Home
  • SEARCH
  • 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 6969949
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:38:49+00:00 2026-05-27T16:38:49+00:00

I have a django application running under twisted. I have server.py with the following

  • 0

I have a django application running under twisted.
I have server.py with the following code: http://slexy.org/view/s21TBxGPut
When I run server.py with twisted I get the following exception: http://slexy.org/view/s2WqQDMvsh

The exception is caused by the last 2 lines in server.py. If I comment these lines, I have no exception.
I have no idea how to debug such thing.
Maybe someone has an idea what am I doing wrong?

Thanks a lot, Arshavski Alexander.

  • 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-27T16:38:50+00:00Added an answer on May 27, 2026 at 4:38 pm

    Your TimerService is constructed wrong:

    ts2 = TimerService(3600, call_command("tamarin_pull_logs"))
    

    This is the same as:

    some_func = call_command("tamarin_pull_logs")
    ts2 = TimerService(3600, some_func)
    

    What does call_command return? It’s not part of your paste, but since your exception is:

    exceptions.TypeError: 'NoneType' object is not callable
    

    I’m going to guess that it returns None. And None is not callable, as the exception points out.

    You set up the first TimerService correctly:

    ts = TimerService(86400, check_all_notifications)
    

    Notice that you’re not calling check_all_notifications in that statement. You’re passing it to TimerService. You need to do the same for your other service:

    ts2 = TimerService(3600, call_command, "tamarin_pull_logs")
    

    It just so happens that TimerService is constructed to support calling a function with some arguments, so it accepts both the callable and arbitrary extra arguments and passes those arguments on to the callable whenever it is time to call it.

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

Sidebar

Related Questions

I have a django application running under twisted with the following service: class JungoHttpService(internet.TCPServer):
I have a Gunicorn server running a Django application which has a tendency to
I have a django application hosted on a server running on Apache + Ubuntu.
HI I have a django application running on app engine and I want to
I have a Django application running locally and I'd like to test the send_mail()
The Django documentation ( http://docs.djangoproject.com/en/1.3/topics/testing/#running-tests ) says that you can run individual test cases
I have a snippet of code like this in a Django application def update_account(user_account,add_widget_count):
I have an apache server under Debian that runs several RESTful application written in
We have an application running built on python/django. I get emails whenever there is
Hi I am working on an application in Django. I have multiple threads running

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.