All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ui.static.topic.management.bulkTopicsConfigsUpdates.js Maven / Gradle / Ivy

There is a newer version: 0.8.0
Show newest version
$(document).ready(function () {
    $("#bulk-update-topics-configs-btn").click(bulkUpdateTopicsConfigs);
});

function bulkUpdateTopicsConfigs() {
    let clusterIdentifier = $(this).attr("data-cluster-identifier");
    performBulkOperations(
        "Updating topics configs on cluster", "wrong-config-topic", "POST",
        "api/management/update-topic-to-config",
        "clusterIdentifier", clusterIdentifier,
        "topicName", "data-topic-name",
        function (topicName) {
            return extractTopicConfigUpdates(topicName, clusterIdentifier);
        }
    );
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy