Skip to content

Commit 376362b

Browse files
algolia-botmillotp
andcommitted
fix(specs): remove the processing outcome (generated)
algolia/api-clients-automation#4359 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent b1f546d commit 376362b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/main/scala/algoliasearch/ingestion/RunOutcome.scala

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,7 @@ object RunOutcome {
3232
case object Failure extends RunOutcome {
3333
override def toString = "failure"
3434
}
35-
case object Processing extends RunOutcome {
36-
override def toString = "processing"
37-
}
38-
val values: Seq[RunOutcome] = Seq(Success, Failure, Processing)
35+
val values: Seq[RunOutcome] = Seq(Success, Failure)
3936

4037
def withName(name: String): RunOutcome = RunOutcome.values
4138
.find(_.toString == name)

0 commit comments

Comments
 (0)