DIRACGrid / DIRAC

DIRAC Grid
http://diracgrid.org
GNU General Public License v3.0
113 stars 174 forks source link

[9.0] DISET version of the TokenManager service #7793

Open atsareg opened 1 week ago

atsareg commented 1 week ago

The DISET version of the TokenManager service is added. This will help to eventually get rid of all the Tornado services.

BEGINRELEASENOTES

*Framework NEW: DISET version of the TokenManager service

ENDRELEASENOTES

andresailer commented 1 week ago

Why not put this into 8.0? The TokenManager is the only tornado service I have

fstagni commented 1 week ago

For each and every service for which we have the DIPS and HTTPs version, we have 2 files:

class NameOfHandler(NotificationHandlerMixin, RequestHandler): pass

- a "TornadoNameOfHandler.py". This contains
```python
class TornadoNameOfHandler(NotificationHandlerMixin, TornadoService):
    pass

which should be respected also here. So, at a minimum you need to modify accordingly also the "TornadoTokenManagerHandler.py". Or, at the 2 VERY different one from the other?

BTW I think this should also go to v8.