-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #133 from ARGOeu/devel
Version 0.7.0
- Loading branch information
Showing
11 changed files
with
2,209 additions
and
3,385 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
Summary: ARGO Sensu configuration manager. | ||
Name: argo-scg | ||
Version: 0.6.3 | ||
Version: 0.7.0 | ||
Release: 1%{?dist} | ||
Source0: %{name}-%{version}.tar.gz | ||
License: ASL 2.0 | ||
|
@@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Mon Sep 2 2024 Katarina Zailac <[email protected]> - 0.7.0-1%{?dist} | ||
- ARGO-4824 Improve checks subscriptions | ||
- ARGO-4748 Remove silenced entries associated to deleted entities | ||
* Thu Aug 8 2024 Katarina Zailac <[email protected]> - 0.6.3-1%{?dist} | ||
- ARGO-4791 Take into account possibility of not having site_bdii defined for a site | ||
* Thu Jul 25 2024 Katarina Zailac <[email protected]> - 0.6.2-1%{?dist} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,40 @@ | ||
class MyException(Exception): | ||
class SCGException(Exception): | ||
def __init__(self, msg): | ||
self.msg = msg | ||
|
||
def __str__(self): | ||
return f"Error: {str(self.msg)}" | ||
return str(self.msg) | ||
|
||
|
||
class SCGWarnException(SCGException): | ||
pass | ||
|
||
|
||
class SensuException(MyException): | ||
class SensuException(SCGException): | ||
def __str__(self): | ||
return f"Sensu error: {str(self.msg)}" | ||
|
||
|
||
class PoemException(MyException): | ||
class PoemException(SCGException): | ||
def __str__(self): | ||
return f"Poem error: {str(self.msg)}" | ||
|
||
|
||
class WebApiException(MyException): | ||
class WebApiException(SCGException): | ||
def __str__(self): | ||
return f"WebApi error: {str(self.msg)}" | ||
|
||
|
||
class ConfigException(MyException): | ||
class ConfigException(SCGException): | ||
def __str__(self): | ||
return f"Configuration file error: {str(self.msg)}" | ||
|
||
|
||
class AgentConfigException(MyException): | ||
class AgentConfigException(SCGException): | ||
def __str__(self): | ||
return f"Agent configuration file error: {str(self.msg)}" | ||
|
||
|
||
class GeneratorException(MyException): | ||
class GeneratorException(SCGException): | ||
def __str__(self): | ||
return str(self.msg) |
Oops, something went wrong.