You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When selecting a message in the message list view, there are two "identic" HTTP requests going to the ServiceControl API to request the data.
This can be seen in the log view:
and it can also be seen on the code, that due to the call to SearchBar.NotifyPropertiesChanged(); both SequenceDiagramViewModel and MessageFlowViewModel are being triggered to create new requests.
Although the API call logic uses RestRequestWithCache, no If-None-Match headers are added to the request and the same ServiceControl controller is invoked twice.
The text was updated successfully, but these errors were encountered:
mauroservienti
changed the title
Selected message data is requested twice from ServiceControl
ServiceInsight may issue more HTTP requests to ServiceControl than necessary
Jun 23, 2022
When selecting a message in the message list view, there are two "identic" HTTP requests going to the ServiceControl API to request the data.
This can be seen in the log view:

and it can also be seen on the code, that due to the call to
SearchBar.NotifyPropertiesChanged();
bothSequenceDiagramViewModel
andMessageFlowViewModel
are being triggered to create new requests.Although the API call logic uses
RestRequestWithCache
, noIf-None-Match
headers are added to the request and the same ServiceControl controller is invoked twice.The text was updated successfully, but these errors were encountered: