Skip to content

Commit 976dc4b

Browse files
authored
Merge pull request #88 from controlm/fix-bugs-09-24
Control-M Integrations Factory up to September 2024
2 parents 11cc7f7 + 5e618f6 commit 976dc4b

File tree

8 files changed

+434
-434
lines changed

8 files changed

+434
-434
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
name="ctm-python-client",
99
packages=find_packages(where="src"),
1010
package_dir={"": "src"},
11-
version="2.3.4",
11+
version="2.3.5",
1212
description="Python Workflows for Control-M",
1313
long_description=long_description,
1414
long_description_content_type='text/markdown',

src/aapi/integration_factory/connection_profiles.py

Lines changed: 193 additions & 193 deletions
Large diffs are not rendered by default.

src/aapi/integration_factory/jobs.py

Lines changed: 235 additions & 235 deletions
Large diffs are not rendered by default.

src/aapi/job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2152,7 +2152,7 @@ class CompleteIn(AAPIObject):
21522152
_type: str = attrs.field(init=False, default='Job:SLAManagement', metadata={
21532153
'_aapi_repr_': 'Type', '_type_aapi_': 'Job:SLAManagement'})
21542154
object_name: str = attrs.field(metadata={'_aapi_name_': True})
2155-
run_as_dummy: str = attrs.field(kw_only=True, default=None, metadata={
2155+
run_as_dummy: bool = attrs.field(kw_only=True, default=None, metadata={
21562156
'_aapi_repr_': 'RunAsDummy'})
21572157
service_name: str = attrs.field(metadata={'_aapi_repr_': 'ServiceName'})
21582158
service_priority: str = attrs.field(kw_only=True, default=None, metadata={

src/ctm_python_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '2.3.4'
1+
__version__ = '2.3.5'
22
__author__ = 'BMC Software'

src/ctm_python_client/core/comm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def wrap(*args, **kwargs):
3636
except Exception as e:
3737
errors = [err.get('message', '') + ' ' + err.get('item', '')
3838
for err in json.loads(e.body)['errors']]
39-
return AAPIClientResponse(False, None, errors)
39+
raise RuntimeError(f"AAPI request failed: {', '.join(errors)}")
4040

4141
return wrap
4242

src/ctm_python_client/ext/autogen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
__all__ = ['generate_ai_plugins_classes']
1010

11-
IF_PLUGINS = ['ODF0420241', 'ABY122023', 'ASQ032024', 'OVM012024', 'ADB112022', 'GLU062021', 'ZSY062022', 'ZML022023', 'ATR122022', 'ADP122022', 'ASF012023', 'AAT052023', 'JEN022024', 'GDR052023', 'TER102023', 'TDM052022', 'SFI122022', 'ODS052024', 'ALM012024', 'GDQ112023', 'GDF032022', 'GCC052024', 'ICS032022', 'ABA092022', 'COM032023', 'ODI032024', 'DBX032022', 'DBT042023', 'ZDX112021', 'ACF082023', 'GDM082023', 'ZRM082023', 'AQS012023', 'GDP042022', 'ZLA112022', 'UIP072021', 'ADO112023', 'AAR072022', 'AEM072022', 'AHD062022', 'ANS032024', 'ASM0220223', 'SOP072023', 'ABK042023', 'MFW022023', 'RST062023', 'ZBA042022', 'SNF092022', 'AMM082023', 'AEC082022', 'GBA032023', 'MBI042022', 'GDU102023', 'TDO042024', 'GWF092023', 'MFL022023', 'KBN062023', 'ADY122023', 'NFI042024', 'CMR022024', 'TAB072023', 'GBQ102022', 'ACS042023', 'BOO032022', 'QLC092022', 'ZVM062022', 'BAK092023', 'ZFN032022', 'ADF062021', 'GVM062022', 'GFU012023']
11+
IF_PLUGINS = ['ODF0420241', 'ADO112023', 'GWF092023', 'AMM082023', 'ZML022023', 'ABA092022', 'ASM0220223', 'GBA032023', 'COM032023', 'ZDX112021', 'NFI042024', 'TAB072023', 'SNF092022', 'GDF032022', 'DBT042023', 'OVM012024', 'AHD062022', 'MFL022023', 'GBQ102022', 'ZFN032022', 'ZBA042022', 'UIP072021', 'JEN022024', 'MFW022023', 'ZVM062022', 'ALM012024', 'TDO042024', 'BAK092023', 'ODI032024', 'ADP122022', 'TDM052022', 'AEC082022', 'AAT052023', 'ODS052024', 'MBI042022', 'GDP042022', 'ANS032024', 'CMR022024', 'ASF012023', 'ADF062021', 'TER102023', 'AQS012023', 'GDQ112023', 'GLU062021', 'ZSY062022', 'BOO032022', 'ACS042023', 'ACF082023', 'GFU012023', 'SFI122022', 'GDU102023', 'ADY122023', 'ZLA112022', 'ATR122022', 'GDR052023', 'QLC092022', 'GCC052024', 'AAR072022', 'ABK042023', 'DBX032022', 'KBN062023', 'ICS032022', 'GVM062022', 'ZRM082023', 'RST062023', 'ABY122023', 'AEM072022', 'SOP072023', 'ADB112022', 'GDM082023', 'ASQ032024']
1212

1313

1414
imports_str = '''from aapi import *

tests/test_sanity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ def test_version_author():
22
import ctm_python_client
33

44
assert ctm_python_client.__author__ == 'BMC Software'
5-
assert ctm_python_client.__version__ == '2.3.4'
5+
assert ctm_python_client.__version__ == '2.3.5'
66

77

0 commit comments

Comments
 (0)