1
0

GODT-1746: wait until frontend is ready

This commit is contained in:
Romain LE JEUNE
2022-07-26 09:27:45 +02:00
committed by Jakub
parent 0a1f349901
commit 2e4128dcfe
2 changed files with 9 additions and 2 deletions

View File

@ -69,7 +69,8 @@ func (s *Service) AddLogEntry(_ context.Context, request *AddLogEntryRequest) (*
// GuiReady implement the GuiReady gRPC service call.
func (s *Service) GuiReady(context.Context, *emptypb.Empty) (*emptypb.Empty, error) {
s.log.Info("GuiReady")
// Note nothing to be done. old Qt frontend had a sync.one
// sync.one
s.initializationDone.Do(s.initializing.Done)
return &emptypb.Empty{}, nil
}