Skip to content

Commit

Permalink
fix: use remote lro Go gapic instead of local (#3299)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahdietz committed Oct 19, 2020
1 parent 027984c commit 9efefe3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,9 @@ private Set<String> mapGoGapicDeps(Set<String> protoImports) {
}

if (protoImport.endsWith(":operations_proto")) {
goImports.add(replaceLabelName(protoImport, ":longrunning_go_gapic"));
goImports.add(replaceLabelName(protoImport, ":longrunning_go_proto"));
goImports.add("@com_google_cloud_go//longrunning:go_default_library");
goImports.add("@com_google_cloud_go//longrunning/autogen:go_default_library");
for (String pi : protoImports) {
if (pi.startsWith("@com_google_protobuf//")) {
if (pi.endsWith(":struct_proto")) {
Expand Down

0 comments on commit 9efefe3

Please sign in to comment.