Skip to content

Commit

Permalink
openapi更新监控接口
Browse files Browse the repository at this point in the history
  • Loading branch information
iamazy committed Oct 10, 2020
1 parent f763c1e commit 04b310f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -496,8 +496,8 @@ public List<ApplicationToken> tokens(String app) {
}

@Override
public BrokerMonitorRecord brokerMonitor(Subscribe subscribe) {
return brokerMonitorService.find(subscribe, true);
public BrokerMonitorRecord brokerMonitor(Subscribe subscribe, boolean active) {
return brokerMonitorService.find(subscribe, active);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public interface OpenAPIService {
**/
List<ApplicationToken> tokens(String app);

BrokerMonitorRecord brokerMonitor(Subscribe subscribe);
BrokerMonitorRecord brokerMonitor(Subscribe subscribe, boolean active);


}

0 comments on commit 04b310f

Please sign in to comment.