Skip to content

Commit

Permalink
merge from dev/origin
Browse files Browse the repository at this point in the history
  • Loading branch information
hawk9821 committed Jul 27, 2024
1 parent f63aceb commit b4816a2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@

package com.datasophon.common.command;

import java.io.Serializable;

import lombok.Data;

import java.io.Serializable;

@Data
public class InstallServiceRoleCommandConfirm implements Serializable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@

package com.datasophon.worker;

import akka.actor.ActorRef;
import akka.actor.ActorSelection;
import akka.actor.ActorSystem;
import akka.actor.Props;
import akka.event.EventStream;
import akka.remote.AssociatedEvent;
import akka.remote.AssociationErrorEvent;
import akka.remote.DisassociatedEvent;
import com.alibaba.fastjson.JSONObject;
import com.datasophon.common.Constants;
import com.datasophon.common.cache.CacheUtils;
import com.datasophon.common.lifecycle.ServerLifeCycleManager;
Expand All @@ -30,29 +39,17 @@
import com.datasophon.worker.actor.WorkerActor;
import com.datasophon.worker.utils.ActorUtils;
import com.datasophon.worker.utils.UnixUtils;
import com.typesafe.config.Config;
import com.typesafe.config.ConfigFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.alibaba.fastjson.JSONObject;
import com.typesafe.config.Config;
import com.typesafe.config.ConfigFactory;

import akka.actor.ActorRef;
import akka.actor.ActorSelection;
import akka.actor.ActorSystem;
import akka.actor.Props;
import akka.event.EventStream;
import akka.remote.AssociatedEvent;
import akka.remote.AssociationErrorEvent;
import akka.remote.DisassociatedEvent;

public class WorkerApplicationServer {

private static final Logger logger = LoggerFactory.getLogger(WorkerApplicationServer.class);
Expand Down

0 comments on commit b4816a2

Please sign in to comment.