Hi,
my iglu-resolver.json for snowplow-enrich-kinesis looks like
{
"schema": "iglu:com.snowplowanalytics.iglu/resolver-config/jsonschema/1-0-1",
"data": {
"repositories": [
{
"name": "my Iglu Server",
"priority": 0,
"vendorPrefixes": ["de.my"],
"connection": {
"http": {
"uri": "https:/snowplow-iglu-prod.my.de/api",
"apikey": "the-key"
}
}
},
{
"name": "Iglu Central",
"priority": 1,
"vendorPrefixes": [ "com.snowplowanalytics" ],
"connection": {
"http": {
"uri": "http://iglucentral.com"
}
}
},
...
However, when the enricher tries to validate an event using my custom-schema (which is visible via https://snowplow-iglu-prod.my.de/api/schemas/de.my?repr=Uri) ) I receive the following in the bad stream:
{
"repository": "my Iglu Server",
"errors": [
{
"error": "ClientFailure",
"message": "Error connecting to https://localhost using address localhost:443 (unresolved: false)"
}
],
"attempts": 1,
"lastAttempt": "2024-03-27T13:23:06.117Z"
}
Any idea where it picks up the localhost?