feat: put sending xblock events over bus behind feature flag (#31813)

This commit is contained in:
Navin Karkera
2023-02-22 21:33:24 +05:30
committed by GitHub
parent 94a6e8dee4
commit 5ed5cc5bc1
3 changed files with 34 additions and 15 deletions

View File

@@ -491,6 +491,12 @@ WEBPACK_LOADER['DEFAULT']['TIMEOUT'] = 5
# Devstack is directly exposed to the caller
CLOSEST_CLIENT_IP_FROM_HEADERS = []
#################### Event bus backend ########################
EVENT_BUS_PRODUCER = 'edx_event_bus_kafka.create_producer'
EVENT_BUS_KAFKA_SCHEMA_REGISTRY_URL = 'http://edx.devstack.schema-registry:8081'
EVENT_BUS_KAFKA_BOOTSTRAP_SERVERS = 'edx.devstack.kafka:29092'
EVENT_BUS_TOPIC_PREFIX = 'dev'
################# New settings must go ABOVE this line #################
########################################################################
# See if the developer has any local overrides.