diff options
| author | Liam Mitchell <[email protected]> | 2026-01-15 17:08:03 -0800 |
|---|---|---|
| committer | Liam Mitchell <[email protected]> | 2026-01-15 17:08:03 -0800 |
| commit | 95d1bf56a77ecbd158e828592110d57f5445ed5e (patch) | |
| tree | c3416397ac8d6bb448044f31d0b66b581aadce1d /src/zenserver/storage/zenstorageserver.cpp | |
| parent | Use well-known OidcToken paths or command line arguments to determine OidcTok... (diff) | |
| download | zen-lm/oidctoken-exe-path.tar.xz zen-lm/oidctoken-exe-path.zip | |
Pass command-line OidcToken option through config rather than env variables, and add lua optionlm/oidctoken-exe-path
Diffstat (limited to 'src/zenserver/storage/zenstorageserver.cpp')
| -rw-r--r-- | src/zenserver/storage/zenstorageserver.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/zenserver/storage/zenstorageserver.cpp b/src/zenserver/storage/zenstorageserver.cpp index 559695a94..381ef028a 100644 --- a/src/zenserver/storage/zenstorageserver.cpp +++ b/src/zenserver/storage/zenstorageserver.cpp @@ -204,8 +204,14 @@ ZenStorageServer::InitializeServices(const ZenStorageServerConfig& ServerOptions m_OpenProcessCache = std::make_unique<OpenProcessCache>(); m_ProjectStore = new ProjectStore(*m_CidStore, m_DataRoot / "projects", m_GcManager, ProjectStore::Configuration{}); - m_HttpProjectService.reset( - new HttpProjectService{*m_CidStore, m_ProjectStore, m_StatusService, m_StatsService, *m_AuthMgr, *m_OpenProcessCache, *m_JobQueue}); + m_HttpProjectService.reset(new HttpProjectService{*m_CidStore, + m_ProjectStore, + m_StatusService, + m_StatsService, + *m_AuthMgr, + *m_OpenProcessCache, + *m_JobQueue, + ServerOptions.OidcTokenExecutable}); if (ServerOptions.WorksSpacesConfig.Enabled) { |