Procházet zdrojové kódy

调整

datasub12_previous
H Vs před 1 rokem
rodič
revize
210423f55d
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      HealthMonitor.Service/Resolver/BloodpressResolver.cs

+ 2
- 2
HealthMonitor.Service/Resolver/BloodpressResolver.cs Zobrazit soubor

@@ -250,7 +250,7 @@ namespace HealthMonitor.Service.Resolver
if (string.IsNullOrWhiteSpace(schedule_push))
{
// 注册首次下推
#if DEBUG
#if DEBUG1
await _serviceEtcd.PutValAsync(key, result, 60*1, false).ConfigureAwait(false);
#else
//DateTime sNow = DateTime.Now;
@@ -280,7 +280,7 @@ namespace HealthMonitor.Service.Resolver
timeUntilNextRun = timeUntilNextRun.Add(TimeSpan.FromDays(1));
}

var ttl = timeUntilNextRun.Seconds;
var ttl =(long)timeUntilNextRun.TotalSeconds;
await _serviceEtcd.PutValAsync(key, result,ttl, false).ConfigureAwait(false);
#endif



Načítá se…
Zrušit
Uložit