mirror of
				https://github.com/siderolabs/talos.git
				synced 2025-11-04 10:21:13 +01:00 
			
		
		
		
	Optimize `DNSResolveCacheController` type, including `dns.Server` optimization for easy start/stop. This PR ensures that we delete server from runners on stop (even unexpected) and restart it properly. Also fixes incorrect assumption on unit-tests. Fixes #8563 This PR also does those things: - Removes `utils.Runner` - Removes `ctxutil.MonitorFn` - Removes `dns.Runner` - Removes `network.dnsRunner` Signed-off-by: Dmitriy Matrenichev <dmitry.matrenichev@siderolabs.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			534 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			534 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// This Source Code Form is subject to the terms of the Mozilla Public
 | 
						|
// License, v. 2.0. If a copy of the MPL was not distributed with this
 | 
						|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
 | 
						|
 | 
						|
// Package ctxutil provides utilities for working with contexts.
 | 
						|
package ctxutil
 | 
						|
 | 
						|
import "context"
 | 
						|
 | 
						|
// Cause returns the cause of the context error, or nil if there is no error or the error is a usual context error.
 | 
						|
func Cause(ctx context.Context) error {
 | 
						|
	if c := context.Cause(ctx); c != ctx.Err() {
 | 
						|
		return c
 | 
						|
	}
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 |