Pinned fields
Click on the next to a field label to start pinning.
Details
Details
Assignee
The Lite
The LiteReporter
Blake Meike
Blake MeikeLabels
Story Points
1
Components
Fix versions
Priority
Instabug
Open Instabug
PagerDuty
PagerDuty
Sentry
Sentry
Zendesk Support
Zendesk Support
Created March 4, 2021 at 11:58 PM
Updated March 18, 2024 at 7:00 PM
Currently, the replicator type is an attribute of AbstractReplicatorConfiguration. There are three problems with this:
1) it means that AbstractReplicatorConfiguration is public, part of our API, to support Kotlin.
2) the property, a property of the Replicator, is illogically associated with the ReplicatorConfiguration
3) the name is ridiculously long.
Add a new enum, Type, to AbstractReplicator, replacing the old enum and deprecate the old enum.