bdoyle0182 commented on a change in pull request #4632: Activation Persister
Service
URL: https://github.com/apache/openwhisk/pull/4632#discussion_r384361223
##########
File path:
core/invoker/src/main/scala/org/apache/openwhisk/core/invoker/InvokerReactive.scala
##########
@@ -195,9 +197,14 @@ class InvokerReactive(
}
/** Stores an activation in the database. */
- private val store = (tid: TransactionId, activation: WhiskActivation,
context: UserContext) => {
- implicit val transid: TransactionId = tid
- activationStore.storeAfterCheck(activation, context)(tid, notifier = None)
+ private val store = if (activationStorageConfig.activationStoreEnabled) {
+ (tid: TransactionId, activation: WhiskActivation, context: UserContext) =>
+ {
Review comment:
Is there any update on whether this will support non-blocking activations?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services