File tree 2 files changed +15
-3
lines changed
arangodb-spark-commons/src/main/scala/org/apache/spark/sql/arangodb/commons
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 {
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 155
155
<url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
156
156
</repository >
157
157
</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 >
158
170
<build >
159
171
<plugins >
160
172
<plugin >
180
192
<dependency >
181
193
<groupId >com.arangodb</groupId >
182
194
<artifactId >arangodb-java-driver-shaded</artifactId >
183
- <version >7.9.0 </version >
195
+ <version >7.15.0-SNAPSHOT </version >
184
196
<scope >compile</scope >
185
197
</dependency >
186
198
<dependency >
You can’t perform that action at this time.
0 commit comments