We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1f546d commit 376362bCopy full SHA for 376362b
src/main/scala/algoliasearch/ingestion/RunOutcome.scala
@@ -32,10 +32,7 @@ object RunOutcome {
32
case object Failure extends RunOutcome {
33
override def toString = "failure"
34
}
35
- case object Processing extends RunOutcome {
36
- override def toString = "processing"
37
- }
38
- val values: Seq[RunOutcome] = Seq(Success, Failure, Processing)
+ val values: Seq[RunOutcome] = Seq(Success, Failure)
39
40
def withName(name: String): RunOutcome = RunOutcome.values
41
.find(_.toString == name)
0 commit comments