Skip to content

Improve performance of triggered chat commands

Zeger-Jan van de Weg requested to merge zj-slow-service-fetch into master

When the trigger endpoint is called, it has to find the right service for the given project. However, the old implementation did much more.

For example, it build a list of the missing services on this project. This whole process took about 750ms each time. The current implementation is expected to perform 10x better, as it only searches in the current projects services. Given the service has to be configured anyway, this can be done.

Merge request reports