We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4569aad commit 229b17fCopy full SHA for 229b17f
perforator/internal/symbolizer/proxy/server/server.go
@@ -1286,6 +1286,10 @@ func (s *PerforatorServer) fetchAndRenderProfileFast(
1286
return nil, fmt.Errorf("failed to select profiles: %w", err)
1287
}
1288
1289
+ if len(profiles) == 0 {
1290
+ return nil, status.Errorf(codes.NotFound, "no profiles found")
1291
+ }
1292
+
1293
err = s.populateMergeSession(ctx, profiles, session)
1294
if err != nil {
1295
return nil, fmt.Errorf("failed to download profiles: %w", err)
0 commit comments