Skip to content

Commit

Permalink
feat: 引擎等MQ场景接入SCS框架 TencentBlueKing#7443
Browse files Browse the repository at this point in the history
  • Loading branch information
royalhuang committed Sep 23, 2022
1 parent ad9d441 commit 6cb4106
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class IndexNameUtilsTest {
re.forEach { clazz ->
val streamEvent = clazz.getAnnotation(StreamEvent::class.java)
println(
"Found StreamEvent class: ${clazz.canonicalName}, " +
"Found StreamEvent class: ${clazz.simpleName.decapitalize()}, " +
"with destination[${streamEvent.destination}]"
)
}
Expand All @@ -62,10 +62,10 @@ class IndexNameUtilsTest {
).getMethodsAnnotatedWith(StreamConsumer::class.java)
println(re1)
re1.forEach { method ->
val streamEvent = method.getAnnotation(StreamConsumer::class.java)
val streamConsumer = method.getAnnotation(StreamConsumer::class.java)
println(
"Found StreamEvent class: ${method.name}, " +
"with destination[${streamEvent.streamEvent}]"
"with destination[${streamConsumer.destination}]"
)
}
}
Expand Down

0 comments on commit 6cb4106

Please sign in to comment.