Skip to content

Commit fa724fc

Browse files
authored
Merge pull request #181 from chess-equality/feature/issue-1021/hide-inactive-endpoints
Feature: Issue 1021 - Hide inactive endpoints
2 parents a827803 + 0611b5f commit fa724fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/spp/protocol/service/LiveManagementService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ interface LiveManagementService {
124124

125125
fun getServices(layer: String?): Future<List<Service>>
126126
fun getInstances(service: Service): Future<List<ServiceInstance>>
127-
fun getEndpoints(service: Service, limit: Int?): Future<List<ServiceEndpoint>>
127+
fun getEndpoints(service: Service, limit: Int?, ignoreInactive: Boolean?): Future<List<ServiceEndpoint>>
128128
fun searchEndpoints(service: Service, keyword: String, limit: Int?): Future<List<ServiceEndpoint>>
129129

130130
fun getActiveProbes(): Future<List<InstanceConnection>>

0 commit comments

Comments
 (0)