Skip to content

Commit 4fab031

Browse files
committed
Rename deprecated to inactive
1 parent f5fc539 commit 4fab031

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lazer/publisher_sdk/proto/state.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ message Publisher {
4747
enum FeedState {
4848
COMING_SOON = 0; // Default value
4949
STABLE = 1;
50-
DEPRECATED = 2;
50+
INACTIVE = 2;
5151
}
5252

5353
// Static data for a feed.

lazer/sdk/rust/protocol/src/symbol_state.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ use {
88
pub enum SymbolState {
99
ComingSoon,
1010
Stable,
11-
Deprecated,
11+
Inactive,
1212
}
1313

1414
impl Display for SymbolState {
1515
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1616
match self {
1717
SymbolState::ComingSoon => write!(f, "coming_soon"),
1818
SymbolState::Stable => write!(f, "stable"),
19-
SymbolState::Deprecated => write!(f, "deprecated"),
19+
SymbolState::Inactive => write!(f, "inactive"),
2020
}
2121
}
2222
}

0 commit comments

Comments
 (0)