style95 commented on issue #5475: URL: https://github.com/apache/openwhisk/issues/5475#issuecomment-2052728331
@paulzhn @pprabh2007 @Tarik-Kada This is because of the updated spi configurations. https://github.com/apache/openwhisk/blob/master/common/scala/src/main/resources/reference.conf#L20 I would ponder over how to handle this part. In the meantime, you guys can configure SPIs like below ```yaml whisk.spi { ArtifactStoreProvider = org.apache.openwhisk.core.database.CouchDbStoreProvider ActivationStoreProvider = org.apache.openwhisk.core.database.ArtifactActivationStoreProvider MessagingProvider = org.apache.openwhisk.connector.kafka.KafkaMessagingProvider ContainerFactoryProvider = org.apache.openwhisk.core.containerpool.docker.DockerContainerFactoryProvider LogStoreProvider = org.apache.openwhisk.core.containerpool.logging.DockerToActivationLogStoreProvider LoadBalancerProvider = org.apache.openwhisk.core.loadBalancer.ShardingContainerPoolBalancer EntitlementSpiProvider = org.apache.openwhisk.core.entitlement.LocalEntitlementProvider AuthenticationDirectiveProvider = org.apache.openwhisk.core.controller.BasicAuthenticationDirective InvokerProvider = org.apache.openwhisk.core.invoker.InvokerReactive InvokerServerProvider = org.apache.openwhisk.core.invoker.DefaultInvokerServer DurationCheckerProvider = org.apache.openwhisk.core.scheduler.queue.NoopDurationCheckerProvider } ``` I confirmed it's working with this. <img width="1271" alt="image" src="https://github.com/apache/openwhisk/assets/3447251/81cf4504-9fab-4866-95ce-f30cbb522a54"> -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
