diff options
| author | Stefan Boberg <[email protected]> | 2023-10-11 10:03:54 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-11 10:03:54 +0200 |
| commit | 1ad940fafb5e3eae7b308dd290b6de6ade69a3eb (patch) | |
| tree | 1d1efe188f45bc422292e75c6784929765882771 /src/zenserver/zenserver.h | |
| parent | fix clang-format whoopsie (diff) | |
| download | zen-1ad940fafb5e3eae7b308dd290b6de6ade69a3eb.tar.xz zen-1ad940fafb5e3eae7b308dd290b6de6ade69a3eb.zip | |
remove legacy compute interfaces (#461)
* removed legacy compute code, which will be replaced with a new implementation in the future
* also updated references to Jupiter storage
Diffstat (limited to 'src/zenserver/zenserver.h')
| -rw-r--r-- | src/zenserver/zenserver.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/zenserver/zenserver.h b/src/zenserver/zenserver.h index 2b1ae3842..0c28c1229 100644 --- a/src/zenserver/zenserver.h +++ b/src/zenserver/zenserver.h @@ -29,7 +29,6 @@ ZEN_THIRD_PARTY_INCLUDES_END #include "admin/admin.h" #include "cache/httpstructuredcache.h" #include "cache/structuredcachestore.h" -#include "compute/function.h" #include "frontend/frontend.h" #include "httpcidstore.h" #include "objectstore/objectstore.h" @@ -131,14 +130,11 @@ private: std::unique_ptr<HttpUpstreamService> m_UpstreamService; std::unique_ptr<HttpStructuredCacheService> m_StructuredCacheService; HttpHealthService m_HealthService; -#if ZEN_WITH_COMPUTE_SERVICES - std::unique_ptr<HttpFunctionService> m_HttpFunctionService; -#endif - std::unique_ptr<HttpFrontendService> m_FrontendService; - std::unique_ptr<HttpObjectStoreService> m_ObjStoreService; - std::unique_ptr<VfsService> m_VfsService; - std::unique_ptr<JobQueue> m_JobQueue; - std::unique_ptr<HttpAdminService> m_AdminService; + std::unique_ptr<HttpFrontendService> m_FrontendService; + std::unique_ptr<HttpObjectStoreService> m_ObjStoreService; + std::unique_ptr<VfsService> m_VfsService; + std::unique_ptr<JobQueue> m_JobQueue; + std::unique_ptr<HttpAdminService> m_AdminService; bool m_DebugOptionForcedCrash = false; bool m_UseSentry = false; |