diff options
| author | Stefan Boberg <[email protected]> | 2026-04-02 22:52:53 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2026-04-02 22:52:53 +0200 |
| commit | 1f766abf8fce4bf24d600bc5cb3c3c396f8a29ca (patch) | |
| tree | b3b60be4789caaed07903c07ca7a5107fe49029f /src/zencompute/runners/remotehttprunner.h | |
| parent | Add MemoryCidStore: memory-backed chunk store with async write-through (diff) | |
| parent | Add hostname and payload stats to remote submit warnings (diff) | |
| download | zen-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.h | 4 |
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; |