in src/main/java/org/apache/sling/graphql/schema/aggregator/impl/URLReaderSupplier.java [40:46]
public Reader get() {
try {
return new InputStreamReader(url.openConnection().getInputStream(), PARTIAL_CHARSET);
} catch(Exception e) {
throw new RuntimeException("Error creating Reader for URL " + url, e);
}
}