We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove the feature flag acceptInvalid in the configuration and consider it as always false.
acceptInvalid
false
acceptInvalid and invalidCount can be removed from these 2 functions :
invalidCount
def enrichEvent[F[_]: Monad: RegistryLookup: Clock]( registry: EnrichmentRegistry[F], client: Client[F, Json], processor: Processor, etlTstamp: DateTime, raw: RawEvent, acceptInvalid: Boolean, invalidCount: F[Unit] ): EitherT[F, BadRow, EnrichedEvent] =
def processEvents[F[_]: Monad: RegistryLookup: Clock: HttpClient]( adapterRegistry: AdapterRegistry, enrichmentRegistry: EnrichmentRegistry[F], client: Client[F, Json], processor: Processor, etlTstamp: DateTime, input: ValidatedNel[BadRow, Option[CollectorPayload]], acceptInvalid: Boolean, invalidCount: F[Unit] ): F[List[Validated[BadRow, EnrichedEvent]]] =
More details here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Remove the feature flag
acceptInvalid
in the configuration and consider it as alwaysfalse
.acceptInvalid
andinvalidCount
can be removed from these 2 functions :More details here.
The text was updated successfully, but these errors were encountered: