Skip to content

Commit 24edec6

Browse files
authored
[skip changelog] Replace obsolete BoardDetailsResp.GetRequiredTools() call in gRPC client example (#685)
The new equivalent method is GetToolsDependencies().
1 parent 4021535 commit 24edec6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client_example/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ func callBoardsDetails(client rpc.ArduinoCoreClient, instance *rpc.Instance) {
445445
}
446446

447447
log.Printf("Board details for %s", details.GetName())
448-
log.Printf("Required tools: %s", details.GetRequiredTools())
448+
log.Printf("Required tools: %s", details.GetToolsDependencies())
449449
log.Printf("Config options: %s", details.GetConfigOptions())
450450
}
451451

0 commit comments

Comments
 (0)