[improve][admin] Opt-out of topic-existence check #627
pulsar-ci-flaky.yaml
on: pull_request
Preconditions
10s
Flaky tests suite
29m 27s
Annotations
1 error
PersistentDispatcherFailoverConsumerTest.setup:
pulsar-broker/src/test/java/org/apache/pulsar/broker/service/PersistentDispatcherFailoverConsumerTest.java#L161
NamespaceService cannot be returned by getPulsarResources()
getPulsarResources() should return PulsarResources
***
If you're unsure why you're getting above error read on.
Due to the nature of the syntax above problem might occur because:
1. This exception *might* occur in wrongly written multi-threaded tests.
Please refer to Mockito FAQ on limitations of concurrency testing.
2. A spy is stubbed using when(spy.foo()).then() syntax. It is safer to stub spies -
- with doReturn|Throw() family of methods. More in javadocs for Mockito.spy() method.
|