Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
AvroSerde leaks the connection in a case when reading schema from url:
In
public static Schema determineSchemaOrThrowException {
...
return AvroSerdeUtils.getSchemaFor(new URL(schemaString).openStream());
...
}
The opened inputStream is never closed.