You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClientAsync.kt
+11
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,17 @@ class OpenlayerOkHttpClientAsync private constructor() {
40
40
this.baseUrl = baseUrl
41
41
}
42
42
43
+
/**
44
+
* Whether to throw an exception if any of the Jackson versions detected at runtime are
45
+
* incompatible with the SDK's minimum supported Jackson version (2.13.4).
46
+
*
47
+
* Defaults to true. Use extreme caution when disabling this option. There is no guarantee
48
+
* that the SDK will work correctly when using an incompatible Jackson version.
Jackson threw an unexpected exception and its runtime version ($jacksonVersion) mismatches the version the SDK was compiled with ($COMPILED_JACKSON_VERSION).
70
-
71
-
You may be using a version of `com.fasterxml.jackson.core:jackson-databind` that's not binary compatible with the SDK.
72
-
73
-
This can happen if you are either:
74
-
1. Directly depending on a different Jackson version
75
-
2. Depending on some library that depends on a different Jackson version, potentially transitively
76
-
77
-
Double-check that you are depending on a compatible Jackson version.
0 commit comments