Skip to content

Commit

Permalink
Silently ignore deprecation errors for iot1c and opsworkscm #369
Browse files Browse the repository at this point in the history
  • Loading branch information
iann0036 committed Jun 1, 2024
1 parent c5fb801 commit 641fa1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/services/iot1click.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ async function updateDatatableInternetofThings1Click() {

await sdkcall("IoT1ClickProjects", "listProjects", {
// no params
}, true).then(async (data) => {
}, false).then(async (data) => {
$('#section-internetofthings-1click-projects-datatable').deferredBootstrapTable('removeAll');
$('#section-internetofthings-1click-placements-datatable').deferredBootstrapTable('removeAll');

Expand Down
2 changes: 1 addition & 1 deletion js/services/opsworks.js
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ async function updateDatatableManagementAndGovernanceOpsWorks() {

await sdkcall("OpsWorksCM", "describeServers", {
// no params
}, true).then((data) => {
}, false).then((data) => {
$('#section-managementandgovernance-opsworks-configurationmanagementservers-datatable').deferredBootstrapTable('removeAll');

data.Servers.forEach(server => {
Expand Down

0 comments on commit 641fa1a

Please sign in to comment.