forked from alibaba/Sentinel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Config and log enhancement for cluster token client
- Refactor token client common config and assign config - Log enhancement when transport to token server failed - Add `getState` method to `ClusterTokenClient` interface Signed-off-by: Eric Zhao <[email protected]>
- Loading branch information
Showing
10 changed files
with
319 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
...c/main/java/com/alibaba/csp/sentinel/cluster/client/config/ClusterClientAssignConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* Copyright 1999-2018 Alibaba Group Holding Ltd. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.alibaba.csp.sentinel.cluster.client.config; | ||
|
||
/** | ||
* @author Eric Zhao | ||
* @since 1.4.1 | ||
*/ | ||
public class ClusterClientAssignConfig { | ||
|
||
private String serverHost; | ||
private Integer serverPort; | ||
|
||
public ClusterClientAssignConfig() {} | ||
|
||
public ClusterClientAssignConfig(String serverHost, Integer serverPort) { | ||
this.serverHost = serverHost; | ||
this.serverPort = serverPort; | ||
} | ||
|
||
public String getServerHost() { | ||
return serverHost; | ||
} | ||
|
||
public ClusterClientAssignConfig setServerHost(String serverHost) { | ||
this.serverHost = serverHost; | ||
return this; | ||
} | ||
|
||
public Integer getServerPort() { | ||
return serverPort; | ||
} | ||
|
||
public ClusterClientAssignConfig setServerPort(Integer serverPort) { | ||
this.serverPort = serverPort; | ||
return this; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "ClusterClientAssignConfig{" + | ||
"serverHost='" + serverHost + '\'' + | ||
", serverPort=" + serverPort + | ||
'}'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.