Peru 🇵🇪 3 - Canadá 🇨🇦 0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const newFeature = await this.featureFlags.newFeature(); // retrieve value of Feature Flag | |
if (newFeature) { | |
await this.newFeatureLogic(data); // execute logic for new feature | |
} else { | |
await this.statusQuoLogic(data); // execute logic that is the status quo | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: '2' | |
services: | |
zookeeper: | |
image: confluentinc/cp-zookeeper:latest | |
environment: | |
ZOOKEEPER_CLIENT_PORT: 2181 | |
ZOOKEEPER_TICK_TIME: 2000 | |
kafka: |