This is a question rather than an issue.
I am creating a cloud function in java that will integrate with Azure Storage Blob. I am using version 7.5.1.
Azure sdk dependency is added to the cloud function pom.xml. There is no error detected during compilation.
However, during execution, when the cloud function API that calls Azure storage blob methods are executed, the controller gives us this error:
cloudfn_java_server - Usercode error. (with java.lang.LinkageError: Package versions: jackson-core=2.9.7, jackson-databind=2.9.7...
It seems that the method is using the api server library and not the version used by Azure.
Is there a way to force the method to not use the libraries used in the api server?
Has the integration of cloud function and azure storage been tried?