public static String checkServiceUrl()

in src/main/java/org/apache/pulsar/manager/service/impl/BrokerStatsServiceImpl.java [308:313]


    public static String checkServiceUrl(String serviceUrl, String requestHost) {
        if (serviceUrl == null || serviceUrl.length() <= 0) {
            serviceUrl = requestHost;
        }
        return serviceUrl;
    }