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 9efb92a commit 4dd6ee6Copy full SHA for 4dd6ee6
internal/orchestrator/sketch_libs.go
@@ -54,7 +54,7 @@ func AddSketchLibrary(ctx context.Context, app app.ArduinoApp, libRef LibraryRel
54
req := &rpc.UpdateLibrariesIndexRequest{Instance: inst, UpdateIfOlderThanSecs: int64(indexUpdateInterval.Seconds())}
55
if err := srv.UpdateLibrariesIndex(req, stream); err != nil {
56
// ignore the error because a missing connection should not stop the user from adding a library.
57
- slog.Warn("error updating library index", slog.String("error", err.Error()))
+ slog.Warn("error updating library index, skipping", slog.String("error", err.Error()))
58
}
59
60
resp, err := srv.ProfileLibAdd(ctx, &rpc.ProfileLibAddRequest{
0 commit comments