Skip to content

Commit 4c0a319

Browse files
committed
fix(metrics-exporter-prometheus): fix visibility issue with LabelSet
1 parent fde7e85 commit 4c0a319

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metrics-exporter-prometheus/src/common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ pub enum BuildError {
8383
/// Represents a set of labels as structured key-value pairs
8484
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
8585
pub struct LabelSet {
86-
labels: Vec<(String, String)>,
86+
pub(crate) labels: Vec<(String, String)>,
8787
}
8888

8989
impl LabelSet {

0 commit comments

Comments
 (0)