Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

subscribe的时候,没有既定topic,就直接报TOPIC_NOT_FOUND #66

Open
cjzyy opened this issue Jul 22, 2020 · 1 comment
Open

Comments

@cjzyy
Copy link

cjzyy commented Jul 22, 2020

按照nsq的文档,subscribe的时候如果没有对应topic,则会直接生成subscribe设置的topic,希望改进

@androzd
Copy link
Contributor

androzd commented Jun 12, 2021

For topic not found you can use:

Not sure

try {
    $nsq->subscribe(
        $topic,
        $channel,
        function (NsqMessage $nsqMessage, $bev) use ($topic, $channel) {
           ...
        }
    );
} catch (NsqException $nsqException) {
    if ($nsqException->getCode() == NSQ_ERROR_TOPIC_NOT_EXISTS) {
        logger()->debug('Waiting for topic creation');
        sleep(5);
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants