aboutsummaryrefslogtreecommitdiff
path: root/src/zencompute/runners/remotehttprunner.h
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2026-04-02 22:52:53 +0200
committerStefan Boberg <[email protected]>2026-04-02 22:52:53 +0200
commit1f766abf8fce4bf24d600bc5cb3c3c396f8a29ca (patch)
treeb3b60be4789caaed07903c07ca7a5107fe49029f /src/zencompute/runners/remotehttprunner.h
parentAdd MemoryCidStore: memory-backed chunk store with async write-through (diff)
parentAdd hostname and payload stats to remote submit warnings (diff)
downloadzen-sb/compute-oidc-auth.tar.xz
zen-sb/compute-oidc-auth.zip
Merge branch 'sb/compute-oidc-auth' of https://github.ol.epicgames.net/ue-foundation/zen into sb/compute-oidc-authsb/compute-oidc-auth
Diffstat (limited to 'src/zencompute/runners/remotehttprunner.h')
-rw-r--r--src/zencompute/runners/remotehttprunner.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/zencompute/runners/remotehttprunner.h b/src/zencompute/runners/remotehttprunner.h
index 2010c98e8..fdf113c77 100644
--- a/src/zencompute/runners/remotehttprunner.h
+++ b/src/zencompute/runners/remotehttprunner.h
@@ -54,9 +54,10 @@ public:
[[nodiscard]] virtual size_t QueryCapacity() override;
[[nodiscard]] virtual std::vector<SubmitResult> SubmitActions(const std::vector<Ref<RunnerAction>>& Actions) override;
virtual void CancelRemoteQueue(int QueueId) override;
- [[nodiscard]] virtual std::string_view GetDisplayName() const override { return m_HostName; }
+ [[nodiscard]] virtual std::string_view GetDisplayName() const override { return m_DisplayName; }
std::string_view GetHostName() const { return m_HostName; }
+ void SetRemoteHostname(std::string_view Hostname);
protected:
LoggerRef Log() { return m_Log; }
@@ -66,6 +67,7 @@ private:
ChunkResolver& m_ChunkResolver;
WorkerThreadPool& m_WorkerPool;
std::string m_HostName;
+ std::string m_DisplayName;
std::string m_BaseUrl;
HttpClient m_Http;