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

[DUBBO-2762]: [Dubbo - qos-http] stopServer should be invoked ? #2767

Merged
merged 1 commit into from
Nov 9, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,10 @@ public <T> Invoker<T> refer(Class<T> type, URL url) throws RpcException {
@Override
public void destroy() {
protocol.destroy();
stopServer();
}

private void startQosServer(URL url) {
if (!hasStarted.compareAndSet(false, true)) {
return;
}

try {
boolean qosEnable = url.getParameter(QOS_ENABLE,true);
if (!qosEnable) {
Expand All @@ -91,6 +88,10 @@ private void startQosServer(URL url) {
return;
}

if (!hasStarted.compareAndSet(false, true)) {
return;
}

int port = url.getParameter(QOS_PORT, QosConstants.DEFAULT_PORT);
boolean acceptForeignIp = Boolean.parseBoolean(url.getParameter(ACCEPT_FOREIGN_IP,"false"));
Server server = Server.getInstance();
Expand Down