Skip to content

Commit

Permalink
fix(specs): remove the processing outcome (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#4359

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Pierre Millot <[email protected]>
  • Loading branch information
algolia-bot and millotp committed Jan 16, 2025
1 parent b1f546d commit 376362b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main/scala/algoliasearch/ingestion/RunOutcome.scala
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,7 @@ object RunOutcome {
case object Failure extends RunOutcome {
override def toString = "failure"
}
case object Processing extends RunOutcome {
override def toString = "processing"
}
val values: Seq[RunOutcome] = Seq(Success, Failure, Processing)
val values: Seq[RunOutcome] = Seq(Success, Failure)

def withName(name: String): RunOutcome = RunOutcome.values
.find(_.toString == name)
Expand Down

0 comments on commit 376362b

Please sign in to comment.