|
@@ -16,7 +16,17 @@ public class ConnectorAPIFeature {
|
|
|
|
|
|
private static final FeatureFlag CONNECTOR_API_FEATURE_FLAG = new FeatureFlag("connector_api");
|
|
|
|
|
|
+ /**
|
|
|
+ * Enables the Connectors API feature by default for the tech preview phase.
|
|
|
+ * As documented, the Connectors API is currently a tech preview feature,
|
|
|
+ * and customers should be aware that no SLAs or support are guaranteed during
|
|
|
+ * its pre-General Availability (GA) stage.
|
|
|
+ *
|
|
|
+ * Instead of removing the feature flag from the code, we enable it by default.
|
|
|
+ * This approach allows for the complete deactivation of the feature during the QA phase,
|
|
|
+ * should any critical bugs be discovered, with a single, trackable code change.
|
|
|
+ */
|
|
|
public static boolean isEnabled() {
|
|
|
- return CONNECTOR_API_FEATURE_FLAG.isEnabled();
|
|
|
+ return true;
|
|
|
}
|
|
|
}
|