浏览代码

Fix null reference

master
Savorboard 5 年前
父节点
当前提交
a02ccc7f98
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      src/DotNetCore.CAP/CAP.Options.cs

+ 2
- 1
src/DotNetCore.CAP/CAP.Options.cs 查看文件

@@ -5,6 +5,7 @@ using System;
using System.Collections.Generic;
using System.Reflection;
using DotNetCore.CAP.Models;
// ReSharper disable InconsistentNaming

namespace DotNetCore.CAP
{
@@ -41,7 +42,7 @@ namespace DotNetCore.CAP
FailedRetryCount = DefaultFailedRetryCount;
Extensions = new List<ICapOptionsExtension>();
Version = DefaultVersion;
DefaultGroup = "cap.queue." + Assembly.GetEntryAssembly().GetName().Name.ToLower();
DefaultGroup = "cap.queue." + Assembly.GetEntryAssembly()?.GetName().Name.ToLower();
}

internal IList<ICapOptionsExtension> Extensions { get; }


正在加载...
取消
保存