Skip to content

Commit

Permalink
fix: macro variable with sign
Browse files Browse the repository at this point in the history
  • Loading branch information
shuiyisong committed Jul 31, 2024
1 parent 049171e commit f4e9a64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meter-macros/src/read_meter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ macro_rules! read_meter {
catalog: $catalog.into(),
schema: $schema.into(),
value: value,
source: source,
source: $source,
};
meter_core::global::global_registry().record_read(record);
}
Expand Down
2 changes: 1 addition & 1 deletion meter-macros/src/write_meter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ macro_rules! write_meter {
catalog: $catalog.into(),
schema: $schema.into(),
value: value,
source: source,
source: $source,
};

r.record_write(record);
Expand Down

0 comments on commit f4e9a64

Please sign in to comment.