fix: use correct hostname for the streamer

This commit is contained in:
tdurieux
2024-04-11 21:38:24 +01:00
parent 03835e86ab
commit f65d167532
+4 -2
View File
@@ -230,7 +230,8 @@ export default class AnonymizedFile {
} }
const cacheableLookup = new CacheableLookup(); const cacheableLookup = new CacheableLookup();
const ipHost = await cacheableLookup.lookupAsync("streamer"); const hostName = new URL(config.STREAMER_ENTRYPOINT).hostname;
const ipHost = await cacheableLookup.lookupAsync(hostName);
// use the streamer service // use the streamer service
return got.stream(join(config.STREAMER_ENTRYPOINT, "api"), { return got.stream(join(config.STREAMER_ENTRYPOINT, "api"), {
@@ -283,7 +284,8 @@ export default class AnonymizedFile {
this.repository.getToken(), this.repository.getToken(),
]); ]);
const cacheableLookup = new CacheableLookup(); const cacheableLookup = new CacheableLookup();
const ipHost = await cacheableLookup.lookupAsync("streamer"); const hostName = new URL(config.STREAMER_ENTRYPOINT).hostname;
const ipHost = await cacheableLookup.lookupAsync(hostName);
got got
.stream(join(config.STREAMER_ENTRYPOINT, "api"), { .stream(join(config.STREAMER_ENTRYPOINT, "api"), {
method: "POST", method: "POST",