mHalo há 4 anos
committed by GitHub
ascendente
cometimento
d029b6c30d
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 4AEE18F83AFDEB23
2 ficheiros alterados com 2 adições e 2 eliminações
  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 Ver ficheiro

@@ -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 Ver ficheiro

@@ -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())


Carregando…
Cancelar
Guardar