Closed minwoox closed 2 months ago
Motivation: The use of repository.find(...).join() during the control plane plugin startup introduces unnecessary delays.
repository.find(...).join()
Modifications:
future.join()
Result:
Motivation: The use of
repository.find(...).join()
during the control plane plugin startup introduces unnecessary delays.Modifications:
future.join()
during the control plane plugin startup to avoid blocking the control plane executor.Result: