Commit ff79702a authored by Waleed Akbar's avatar Waleed Akbar
Browse files

No need messages

parent 1e56397e
Loading
Loading
Loading
Loading
+0 −17
Original line number Diff line number Diff line
@@ -13,20 +13,3 @@
# limitations under the License.

def create_kafka_config_a(bootstrap_server: str, exporter_endpoint: str, kafka_topic: str,
                           run_duration: int, fetch_interval: int):
        """
        Provide ...
        Bootstrap_server IP address as String.
        Exporter endpoint with port <http://ip:port(metrics)> address as String.
        Kafka topic name as String.
        Total duration of the test as Int.
        Fetch_interval as Int.
        """
        _bootstrap_servers = bootstrap_server
        _exporter_endpoint = exporter_endpoint
        _kafka_topic       = kafka_topic
        _run_duration      = run_duration
        _fetch_interval    = fetch_interval

        return _bootstrap_servers, _exporter_endpoint, _kafka_topic, _run_duration, _fetch_interval