diff options
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; |