Skip to content

Commit

Permalink
⬆️ opt dubbo version to 3.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
songxiaosheng committed Jan 25, 2024
1 parent 0b7ada1 commit 19fc083
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

import static org.apache.dubbo.common.constants.CommonConstants.DEFAULT_TIMEOUT;
import static org.apache.dubbo.common.constants.CommonConstants.TIMEOUT_KEY;
import static org.apache.dubbo.config.Constants.CLIENT_THREAD_POOL_NAME;

/**
* GrizzlyClient
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
import static org.apache.dubbo.common.constants.CommonConstants.DEFAULT_THREADS;
import static org.apache.dubbo.common.constants.CommonConstants.THREADPOOL_KEY;
import static org.apache.dubbo.common.constants.CommonConstants.THREADS_KEY;
import static org.apache.dubbo.config.Constants.SERVER_THREAD_POOL_NAME;

/**
* GrizzlyServer
Expand Down Expand Up @@ -99,6 +100,11 @@ protected void doClose() throws Throwable {
}
}

@Override
protected int getChannelsSize() {
return channels.size();
}

@Override
public boolean isBound() {
return !transport.isStopped();
Expand Down

0 comments on commit 19fc083

Please sign in to comment.