Skip to content

Commit 97e64f2

Browse files
Merge pull request ytti#3433 from emilias-contributions/change/ignore-64-bit-uptime-for-srosmd
srosmd: add ignore regex for 64-bit system up time
2 parents cc5fe61 + 38fe02a commit 97e64f2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
1919
- Fix frozen string literals (@robertcheramy)
2020
- powerconnect: Cleanup login/logout logic. Fixes #3437 (@clifcox)
2121
- aos7: remove extra lines occuring when `show hardware-info` runs slow (@rouven0)
22+
- srosmd: add ignore regex for 64-bit system uptime (@emiliaaah)
2223

2324
## [0.32.2 – 2025-02-27]
2425
This patch release mainly fixes the docker building process, wich resulted in

lib/oxidized/model/srosmd.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class SROSMD < Oxidized::Model
2626
#
2727
# Strip uptime.
2828
#
29-
cfg.sub! /^System Up Time.*\n/, ''
29+
cfg.gsub! /^System Up Time.*\n/, ''
3030
comment cfg
3131
end
3232

0 commit comments

Comments
 (0)