Skip to content

Commit

Permalink
Ignore compatibility check failure in internal interfaces.
Browse files Browse the repository at this point in the history
asyncClose() was added to com.google.cloud.spanner.Session and
asyncDeleteSession() was added to
com.google.cloud.spanner.spi.v1.SpannerRpc in #24 which resulted in
binary compatibility test failures. This config allows us to ignore the
failure.
  • Loading branch information
skuruppu committed Jan 24, 2020
1 parent 41f47db commit 84c6930
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions google-cloud-spanner/clirr-ignored-differences.xml
@@ -0,0 +1,14 @@
<?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/cloud/spanner/Session</className>
<method>* asyncClose()</method>
</difference>
<difference>
<differenceType>7012</differenceType>
<className>com/google/cloud/spanner/spi/v1/SpannerRpc</className>
<method>* asyncDeleteSession(*)</method>
</difference>
</differences>

0 comments on commit 84c6930

Please sign in to comment.