Hi @ricardo,
We have successfully executed the project and will provide you with an update at the earliest opportunity.
Hi @pliaspzero,
This problem relates to your Azure settings or HTTP client settings in your code.
Could you check this issue? https://github.com/Azure/azure-functions-host/issues/8168
Hi @uenlkr4e,
Could you try to implement ITransientDependency
to DoSomething
class?
Hi @uenlkr4e,
Can you show your implementation code?
Hi @truist.software,
Could you share your project with [email protected] ?
Hi @uenlkr4e,
ABP ensures that the same job is not executed twice by marking jobs as "IsAbandoned" when fetched and excluding them from subsequent fetches until they are completed or failed. This mechanism prevents duplicate execution and ensures reliable job processing.
https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp/BackgroundJobs/BackgroundJobInfo.cs
Hi @[email protected],
What is your product version? This typically happens when there is a mismatch between the versions of the assemblies being referenced or when the required assembly is not properly loaded or available.
Check your .csproj
file and update all MAUI-related packages to the same version.
<PackageReference Include="Microsoft.Maui.Controls" Version="x.x.x" /> <PackageReference Include="Microsoft.Maui.Graphics" Version="x.x.x" />
Then;
Hi @JapNolt,
You should update TenantCacheItem
[Serializable]
public class CustomTenantCacheItem : TenantCacheItem
{
// new property
public string CustomProperty { get; set; }
}
Then create and use your own custom cache instead of the ones here.
https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp.Zero.Common/MultiTenancy/ITenantCache.cs#L5
https://github.com/aspnetboilerplate/aspnetboilerplate/blob/679d9fb8722cda5da82bffcda31b0de2f06fa3a1/src/Abp.Zero.Common/MultiTenancy/TenantCache.cs#L12