소스 검색

fixed #622 #624 (#625)

master
mHalo 4 년 전
committed by GitHub
부모
커밋
d029b6c30d
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -1
      src/DotNetCore.CAP.PostgreSql/IMonitoringApi.PostgreSql.cs
  2. +1
    -1
      src/DotNetCore.CAP/Internal/IConsumerServiceSelector.Default.cs

+ 1
- 1
src/DotNetCore.CAP.PostgreSql/IMonitoringApi.PostgreSql.cs 파일 보기

@@ -108,8 +108,8 @@ namespace DotNetCore.CAP.PostgreSql
{
Id = reader.GetInt64(index++),
Version = reader.GetString(index++),
Group = queryDto.MessageType == MessageType.Subscribe ? reader.GetString(index++) : default,
Name = reader.GetString(index++),
Group = queryDto.MessageType == MessageType.Subscribe ? reader.GetString(index++) : default,
Content = reader.GetString(index++),
Retries = reader.GetInt32(index++),
Added = reader.GetDateTime(index++),


+ 1
- 1
src/DotNetCore.CAP/Internal/IConsumerServiceSelector.Default.cs 파일 보기

@@ -125,7 +125,7 @@ namespace DotNetCore.CAP.Internal
// Ignore partial attributes when no topic attribute is defined on class.
if (topicClassAttribute is null)
{
topicMethodAttributes = topicMethodAttributes.Where(x => x.IsPartial);
topicMethodAttributes = topicMethodAttributes.Where(x => !x.IsPartial);
}

if (!topicMethodAttributes.Any())


불러오는 중...
취소
저장