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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy