Skip to content

Commit b571164

Browse files
jiangpengchengJesseStutler
authored andcommitted
Fix wrong returned type when reschedule activation msg (apache#5242)
1 parent 447d012 commit b571164

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/invoker/src/main/scala/org/apache/openwhisk/core/containerpool/v2/ActivationClientProxy.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ class ActivationClientProxy(
131131
.recover {
132132
case t =>
133133
logging.error(this, s"Failed to reschedule activation (error: $t)")
134-
Future.successful(RescheduleResponse())
134+
RescheduleResponse()
135135
}
136136
.foreach(res => {
137137
context.parent ! res

0 commit comments

Comments
 (0)