Skip to content

Commit

Permalink
[Broker] Fix producing messages when preciseTopicPublishRateLimiterEn…
Browse files Browse the repository at this point in the history
…able=true (#11442)

Fixes #10603
  • Loading branch information
lhotari committed Aug 2, 2021
1 parent 4f9abf0 commit b166701
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
Expand Up @@ -58,7 +58,7 @@ public void update(PublishRate maxPublishRate) {

@Override
public boolean tryAcquire(int numbers, long bytes) {
// No-op
// Always allow
return true;
}

Expand Down
@@ -0,0 +1,32 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.pulsar.broker.service;

import static org.testng.Assert.assertTrue;
import org.testng.annotations.Test;

public class PublishRateLimiterDisableTest {

// GH issue #10603
@Test
void shouldAlwaysAllowAcquire() {
PublishRateLimiterDisable publishRateLimiter = PublishRateLimiterDisable.DISABLED_RATE_LIMITER;
assertTrue(publishRateLimiter.tryAcquire(Integer.MAX_VALUE, Long.MAX_VALUE));
}
}

0 comments on commit b166701

Please sign in to comment.