Beispiel #1
0
        public async Task <ActionResult> AddCluster(Cluster cluster)
        {
            await _dbContext.Set <Cluster>().AddAsync(cluster);

            await _dbContext.SaveChangesAsync();

            _reverseProxyStore.Reload();
            return(Ok());
        }
Beispiel #2
0
 private void ReloadConfig()
 {
     Task.Factory.StartNew(() => _reverseProxyStore.Reload());
 }