Browse Source

BackgroundJobs module const converted to static

pull/4527/head
Ahmet Çotur 6 years ago
parent
commit
a18482bb48
  1. 4
      modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain.Shared/Volo/Abp/BackgroundJobs/BackgroundJobRecordConsts.cs

4
modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain.Shared/Volo/Abp/BackgroundJobs/BackgroundJobRecordConsts.cs

@ -2,8 +2,8 @@
{
public static class BackgroundJobRecordConsts
{
public const int MaxJobNameLength = 128;
public static int MaxJobNameLength { get; set; } = 128;
public const int MaxJobArgsLength = 1024 * 1024;
public static int MaxJobArgsLength { get; set; } = 1024 * 1024;
}
}

Loading…
Cancel
Save