Skip to content

Commit 84c6930

Browse files
committed
Ignore compatibility check failure in internal interfaces.
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.
1 parent 41f47db commit 84c6930

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html -->
3+
<differences>
4+
<difference>
5+
<differenceType>7012</differenceType>
6+
<className>com/google/cloud/spanner/Session</className>
7+
<method>* asyncClose()</method>
8+
</difference>
9+
<difference>
10+
<differenceType>7012</differenceType>
11+
<className>com/google/cloud/spanner/spi/v1/SpannerRpc</className>
12+
<method>* asyncDeleteSession(*)</method>
13+
</difference>
14+
</differences>

0 commit comments

Comments
 (0)