Skip to content

Commit 56e99d0

Browse files
authored
Merge pull request #3 from themaxbelov/updated-schema
Update to support latest schema
2 parents d6959ac + 0757b04 commit 56e99d0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apsconnectcli/apsconnect.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,10 +288,10 @@ def install_frontend(self, source, oauth_key, oauth_secret, backend_url, setting
288288

289289
app_properties = _get_properties(app_schema_path)
290290

291-
if 'hubID' in app_properties:
291+
if 'hubId' in app_properties:
292292
payload.update({
293293
'app': {
294-
'hubID': hub_id or str(uuid.uuid4()),
294+
'hubId': hub_id or str(uuid.uuid4()),
295295
}
296296
})
297297

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
setup(
1212
name='apsconnectcli',
1313
author='Ingram Micro',
14-
version='1.6.8',
14+
version='1.6.9',
1515
keywords='aps apsconnect connector automation',
1616
extras_require={
1717
':python_version<="2.7"': ['backports.tempfile==1.0rc1']},

0 commit comments

Comments
 (0)