mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 18:32:28 +02:00
- Implement probe retry - Switch to typical core/provider design pattern for HostProbingService and as a result decoupling the dependency between SR and HostLocationProvider Change-Id: I33a15af580677ea376b421ac3e26f9821dcca844
23 lines
535 B
Python
23 lines
535 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//incubator/api:onos-incubator-api',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//utils/osgi:onlab-osgi-tests',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
app_name = 'org.onosproject.hostprobingprovider',
|
|
title = 'Host Probing Provider',
|
|
category = 'Provider',
|
|
url = 'http://onosproject.org',
|
|
description = 'Provides host probing mechanism that discovers or verifies the existence of a host at specific location',
|
|
)
|