Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Brian O'Connor
2015-04-30 16:16:47 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
cdec493d804d83404370f3d0d1560b5f5da8f0dd
cdec493d
1 parent
6d8e3171
Fixing logger for IntentCleanup
Change-Id: Id51fe14b87aaa14da5d5097aca83b8ed397b902c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
core/net/src/main/java/org/onosproject/net/intent/impl/IntentCleanup.java
core/net/src/main/java/org/onosproject/net/intent/impl/IntentCleanup.java
View file @
cdec493
...
...
@@ -56,7 +56,7 @@ import static org.slf4j.LoggerFactory.getLogger;
@Component
(
immediate
=
true
)
public
class
IntentCleanup
implements
Runnable
,
IntentListener
{
private
static
final
Logger
log
=
getLogger
(
Intent
Manager
.
class
);
private
static
final
Logger
log
=
getLogger
(
Intent
Cleanup
.
class
);
private
static
final
int
DEFAULT_PERIOD
=
5
;
//seconds
private
static
final
int
DEFAULT_THRESHOLD
=
5
;
//tries
...
...
@@ -68,7 +68,7 @@ public class IntentCleanup implements Runnable, IntentListener {
@Property
(
name
=
"retryThreshold"
,
intValue
=
DEFAULT_THRESHOLD
,
label
=
"Number of times to retry CORRUPT intent without delay"
)
pr
ivate
int
retryThreshold
=
DEFAULT_THRESHOLD
;
pr
otected
int
retryThreshold
=
DEFAULT_THRESHOLD
;
@Reference
(
cardinality
=
ReferenceCardinality
.
MANDATORY_UNARY
)
protected
IntentService
service
;
...
...
Please
register
or
login
to post a comment