File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed
arangodb-spark-commons/src/main/scala/org/apache/spark/sql/arangodb/commons Expand file tree Collapse file tree 2 files changed +15
-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 155155 <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
156156 </repository >
157157 </distributionManagement >
158+ <repositories >
159+ <repository >
160+ <id >arangodb-snapshots</id >
161+ <url >https://oss.sonatype.org/content/groups/staging</url >
162+ <snapshots >
163+ <enabled >true</enabled >
164+ </snapshots >
165+ <releases >
166+ <enabled >false</enabled >
167+ </releases >
168+ </repository >
169+ </repositories >
158170 <build >
159171 <plugins >
160172 <plugin >
180192 <dependency >
181193 <groupId >com.arangodb</groupId >
182194 <artifactId >arangodb-java-driver-shaded</artifactId >
183- <version >7.9.0 </version >
195+ <version >7.15.0-SNAPSHOT </version >
184196 <scope >compile</scope >
185197 </dependency >
186198 <dependency >
You can’t perform that action at this time.
0 commit comments