File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed
arangodb-spark-commons/src/main/scala/org/apache/spark/sql/arangodb/commons Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -176,8 +176,8 @@ class ArangoClient(options: ArangoDBConf) extends Logging {
176176 val response = arangoDB.execute(request, classOf [RawBytes ])
177177
178178 import scala .collection .JavaConverters .asScalaIteratorConverter
179- val errors = serde.parse(response.getBody.get).iterator().asScala
180- .zip(serde.parse(data.get).iterator().asScala)
179+ val errors = serde.parse(response.getBody.get, " / " ).iterator().asScala
180+ .zip(serde.parse(data.get, " / " ).iterator().asScala)
181181 .filter(_._1.has(" error" ))
182182 .filter(_._1.get(" error" ).booleanValue())
183183 .map(it => (
Original file line number Diff line number Diff line change 180180 <dependency >
181181 <groupId >com.arangodb</groupId >
182182 <artifactId >arangodb-java-driver-shaded</artifactId >
183- <version >7.9.0 </version >
183+ <version >7.15.0-SNAPSHOT </version >
184184 <scope >compile</scope >
185185 </dependency >
186186 <dependency >
478478 </plugins >
479479 </build >
480480
481+ <repositories >
482+ <repository >
483+ <id >arangodb-snapshots</id >
484+ <url >https://oss.sonatype.org/content/groups/staging</url >
485+ <snapshots >
486+ <enabled >true</enabled >
487+ </snapshots >
488+ <releases >
489+ <enabled >false</enabled >
490+ </releases >
491+ </repository >
492+ </repositories >
493+
481494</project >
You can’t perform that action at this time.
0 commit comments