Skip to content

Commit

Permalink
fix: telemetry event at paywall not reporting (#18770)
Browse files Browse the repository at this point in the history
Signed-off-by: tabVersion <tabvision@bupt.icu>
  • Loading branch information
tabVersion authored Oct 1, 2024
1 parent 72ba6d5 commit ef8c50f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/license/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use risingwave_pb::telemetry::PbTelemetryEventStage;
use risingwave_telemetry_event::report_event_common;

pub(crate) fn report_telemetry(feature: &Feature, feature_name: &str, success_flag: bool) {
if matches!(feature, Feature::TestPaid) {
if !matches!(feature, Feature::TestPaid) {
let mut attr_builder = jsonbb::Builder::<Vec<u8>>::new();
attr_builder.begin_object();
attr_builder.add_string("success");
Expand Down

0 comments on commit ef8c50f

Please sign in to comment.