macOS WeatherKit "A server with the specified hostname could not be found"

My code was running with with the version before Xcode 26 RC. I recompiled one last time. Now I'm getting the error: A server with the specified hostname could not be found

            let now = Calendar.current.date(byAdding: .hour, value: 1, to: Date())!
            let nextWeek = Calendar.current.date(byAdding: .day, value: 14, to: Date())!
			do
			{
                let (dailyForecast, hourlyForecast, currentWeather, alertWeather) =
                    try await weatherService.weather(for: thisLocation, including: .daily, .hourly(startDate: now, endDate: nextWeek), .current, .alerts)

Suggestions?

Sorry for a missing first statement:

let thisLocation = CLLocation(latitude: lat, longitude: long)

macOS WeatherKit "A server with the specified hostname could not be found"
 
 
Q