Skip to content

Commit

Permalink
fix: executor framework changes skipped in clirr checks, and added ex…
Browse files Browse the repository at this point in the history
…ception for partition methods in admin class (#3000)
  • Loading branch information
rahul2393 committed Apr 3, 2024
1 parent 1673fd7 commit c2d8e95
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html -->
<differences>
<difference>
<differenceType>7012</differenceType>
<className>com/google/spanner/admin/instance/v1/InstanceAdminGrpc$AsyncService</className>
<method>*InstancePartition*(*)</method>
</difference>
</differences>
8 changes: 8 additions & 0 deletions proto-google-cloud-spanner-executor-v1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
<configuration>
<!-- Exclude (public) classes in this internal package -->
<excludes>com/google/spanner/executor/v1/**</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit c2d8e95

Please sign in to comment.