Skip to content

Commit

Permalink
fix mvn issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pmupkin committed May 10, 2023
1 parent 659b74c commit 48e5b81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import com.alipay.sofa.ark.common.log.ArkLoggerFactory;
import com.alipay.sofa.ark.netty.EmbeddedServerServiceImpl;
import com.alipay.sofa.ark.spi.model.PluginContext;
Expand All @@ -39,7 +38,7 @@ public void stop(PluginContext context) {
}
if (webServer != null) {
try {
//webServer.stop();
//webServer.stop();
} catch (Exception ex) {
ArkLoggerFactory.getDefaultLogger().error("Unable to stop embedded Netty", ex);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,12 @@
*/
package com.alipay.sofa.ark.netty;


import com.alipay.sofa.ark.spi.web.EmbeddedServerService;
import reactor.netty.http.server.HttpServer;

public class EmbeddedServerServiceImpl implements EmbeddedServerService<HttpServer> {
private HttpServer httpServer;
private Object lock = new Object();
private Object lock = new Object();

@Override
public HttpServer getEmbedServer() {
Expand Down

0 comments on commit 48e5b81

Please sign in to comment.