Skip to content

Commit a6f2bae

Browse files
fix(playstation): remove processing flag for endpoint (#4740)
1 parent 9fd1ce3 commit a6f2bae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

relay-server/src/endpoints/common.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

relay-server/src/endpoints/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ mod health_check;
1515
mod minidump;
1616
mod monitor;
1717
mod nel;
18-
#[cfg(all(sentry, feature = "processing"))]
18+
#[cfg(sentry)]
1919
mod playstation;
2020
mod project_configs;
2121
mod 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

0 commit comments

Comments
 (0)