We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There is such code in JobDb
jobDb.JobType = jobMetadata.JobType.AssemblyQualifiedNameWithoutVersion();
where AssemblyQualifiedNameWithoutVersion looks like
public static string AssemblyQualifiedNameWithoutVersion(this Type type) => type.FullName + ", " + type.GetTypeInfo().Assembly.GetName().Name;
When we use generic job, we get name with version because type.FullName returns something like
GenericJob`1[[GenericType, MyAssembly, Version=0.0.0.1, Culture=neutral, PublicKeyToken=null]]
and result JobType for generic type looks like
GenericJob`1[[GenericType, MyAssembly, Version=0.0.0.1, Culture=neutral, PublicKeyToken=null]], MyAssembly
As a result, after updating assembly version horarium will not be able to handle jobs created in previous version.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is such code in JobDb
where
AssemblyQualifiedNameWithoutVersion looks like
When we use generic job, we get name with version because type.FullName returns something like
and result JobType for generic type looks like
As a result, after updating assembly version horarium will not be able to handle jobs created in previous version.
The text was updated successfully, but these errors were encountered: