Skip to content

Commit

Permalink
Fixed regression on JSON lib upgrade.
Browse files Browse the repository at this point in the history
  • Loading branch information
vertigo17 committed Dec 27, 2024
1 parent b6f30c4 commit e04fff1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ protected void doGet(HttpServletRequest request, HttpServletResponse response)
} catch (CerberusException ex) {
LOG.warn(ex);
} catch (JSONException ex) {
LOG.warn(ex);
LOG.warn(ex, ex);
}
}

Expand All @@ -319,7 +319,7 @@ protected void doPost(HttpServletRequest request, HttpServletResponse response)
} catch (CerberusException ex) {
LOG.warn(ex);
} catch (JSONException ex) {
LOG.warn(ex);
LOG.warn(ex, ex);
}
}

Expand Down
4 changes: 2 additions & 2 deletions source/src/main/webapp/js/transversalobject/Robot.js
Original file line number Diff line number Diff line change
Expand Up @@ -840,9 +840,9 @@ function addNewExecutorRow(tableBody) {
isDeviceLockUnlock: false,
description: "",
executorExtensionHost: "",
executorExtensionPort: "8093",
executorExtensionPort: 8093,
executorProxyHost: "",
executorProxyPort: "",
executorProxyPort: 0,
executorProxyType: "NONE"
};
appendExecutorRow(tableBody, newExecutor);
Expand Down

0 comments on commit e04fff1

Please sign in to comment.