Fix cruft caught in review

This commit is contained in:
Daniel A. Wozniak 2023-05-18 15:18:13 -07:00 committed by Gareth J. Greenaway
parent 4baea1a97b
commit 2e1097eac6
2 changed files with 2 additions and 2 deletions

View file

@ -395,7 +395,7 @@ class FormattedEventsHandler(AllEventsHandler): # pylint: disable=W0223,W0232
These messages make up salt's
"real time" event stream.
"""
log.error("Got websocket message %s", message)
log.debug("Got websocket message %s", message)
if message == "websocket client ready":
if self.connected:
# TBD: Add ability to run commands in this branch

View file

@ -79,7 +79,7 @@ class SaltVersionsInfo(type):
SILICON = SaltVersion("Silicon" , info=3004, released=True)
PHOSPHORUS = SaltVersion("Phosphorus" , info=3005, released=True)
SULFUR = SaltVersion("Sulfur" , info=(3006, 0), released=True)
CHLORINE = SaltVersion("Chlorine" , info=(3007, 0), released=True)
CHLORINE = SaltVersion("Chlorine" , info=(3007, 0))
ARGON = SaltVersion("Argon" , info=(3008, 0))
POTASSIUM = SaltVersion("Potassium" , info=(3009, 0))
CALCIUM = SaltVersion("Calcium" , info=(3010, 0))