andau / abapCI

Continuous Integration for ABAP
MIT License
62 stars 14 forks source link

Too many requests #10

Closed timostark closed 5 years ago

timostark commented 5 years ago

Hi,

After installing the plugin and activating quite a lot of objects, I get into the situation, that the plugin is pushing 1 request per second (see log) image

That will fill up the system.. Do you have any idea, what is going on here?

Greets, Timo

andau commented 5 years ago

When one of the activation buttons is clicked an job starts that checks continously for maximal 20 seconds if there is a change in the number of inactive objects. Thats the logic to get aware of the asynchronous activations and start the Unit test / ATC run in the right time. For example 3 objects are actviated. Job will start with three inactive objects. When the number changes for 2, 1 or 0 the Unit test / ATC run is triggered else the check is redone till 20 seconds are passed.

One thing I have to check if this logic is really only triggered when the activation buttons are pressed or also if a file change is done while there exists unactivated objects.

Hopefully the explanation was clear enough.