File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
relay-server/src/endpoints Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -63,11 +63,11 @@ pub enum BadStoreRequest {
6363 #[ error( "missing minidump" ) ]
6464 MissingMinidump ,
6565
66- #[ cfg( all ( sentry, feature = "processing" ) ) ]
66+ #[ cfg( sentry) ]
6767 #[ error( "invalid prosperodump" ) ]
6868 InvalidProsperodump ,
6969
70- #[ cfg( all ( sentry, feature = "processing" ) ) ]
70+ #[ cfg( sentry) ]
7171 #[ error( "missing prosperodump" ) ]
7272 MissingProsperodump ,
7373
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ mod health_check;
1515mod minidump;
1616mod monitor;
1717mod nel;
18- #[ cfg( all ( sentry, feature = "processing" ) ) ]
18+ #[ cfg( sentry) ]
1919mod playstation;
2020mod project_configs;
2121mod public_keys;
@@ -87,7 +87,7 @@ pub fn routes(config: &Config) -> Router<ServiceState>{
8787 // NOTE: If you add a new (non-experimental) route here, please also list it in
8888 // https://github.com/getsentry/sentry-docs/blob/master/docs/product/relay/operating-guidelines.mdx
8989
90- #[ cfg( all ( sentry, feature = "processing" ) ) ]
90+ #[ cfg( sentry) ]
9191 let store_routes = store_routes. route ( "/api/{project_id}/playstation/" , playstation:: route ( config) ) ;
9292 let store_routes = store_routes. route_layer ( middlewares:: cors ( ) ) ;
9393
You can’t perform that action at this time.
0 commit comments