Giter VIP home page Giter VIP logo

django-astrosat-tasks's People

Contributors

allynt avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

django-astrosat-tasks's Issues

improve serializer to include timing info

I had done this, but if fails if the task hasn't run (if last_run_at is None):

    def get_timing_info(self, obj):

        schedule = obj.schedule
        last_run_at = obj.last_run_at
        
        if obj.interval is not None:
            schedule_type = "interval"
        elif obj.crontab is not None:
            schedule_type = "crontab"
        elif obj.solar is not None:
            schedule_type = "solar"
        elif obj.clocked is not None:
            schedule_type = "clocked"
        else:
            schedule_type = "UNKNOWN"
        
        (is_due, time_in_seconds_for_next_execution) = schedule.is_due(last_run_at)
        next_execution_time = timezone.now() + datetime.timedelta(seconds=time_in_seconds_for_next_execution)

        timing_info = {
            "type": f"{schedule_type}: {schedule}",
            "last_execution": last_run_at.replace(microsecond=0),
            "next_execution": next_execution_time.replace(microsecond=0),
            "is_due": is_due,
        }

        return timing_info

see

ability to disable tasks

If ASTROSAT_ENABLE_CELERY is modified, I should take appropriate action: purge all pending tasks, and prevent any new tasks (or not).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.