2025.1 Series Release Notes

19.0.0-3

New Features

  • A new module, masakari.wsgi, has been added as a place to gather WSGI application objects. This is intended to ease deployment by providing a consistent location for these objects. For example, if using uWSGI then instead of:

    [uwsgi]
    wsgi-file = /bin/masakari-wsgi
    

    You can now use:

    [uwsgi]
    module = masakari.wsgi.api:application
    

    This also simplifies deployment with other WSGI servers that expect module paths such as gunicorn.