Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(subscriber): support grpc-web and add grpc-web feature #498

Merged
merged 17 commits into from
Feb 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update console-subscriber/src/builder.rs
Co-authored-by: Hayden Stainsby <[email protected]>
  • Loading branch information
Rustin170506 and hds authored Feb 13, 2024
commit 8246b95422796c108917ae367fdf672d905b0289
2 changes: 1 addition & 1 deletion console-subscriber/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ pub struct Builder {
/// value. Higher values will result in more memory usage.
pub(super) scheduled_duration_max: Duration,

#[cfg(feature = "grpc-web")]
/// Whether to enable the grpc-web support.
#[cfg(feature = "grpc-web")]
enable_grpc_web: bool,
}

Expand Down
Loading