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 {
176
176
val response = arangoDB.execute(request, classOf [RawBytes ])
177
177
178
178
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)
181
181
.filter(_._1.has(" error" ))
182
182
.filter(_._1.get(" error" ).booleanValue())
183
183
.map(it => (
Original file line number Diff line number Diff line change 180
180
<dependency >
181
181
<groupId >com.arangodb</groupId >
182
182
<artifactId >arangodb-java-driver-shaded</artifactId >
183
- <version >7.9.0 </version >
183
+ <version >7.15.0-SNAPSHOT </version >
184
184
<scope >compile</scope >
185
185
</dependency >
186
186
<dependency >
478
478
</plugins >
479
479
</build >
480
480
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
+
481
494
</project >
You can’t perform that action at this time.
0 commit comments