Skip to content

Commit

Permalink
Fixed request param cast issue for ImpEx execution
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenikalenchuk committed Feb 21, 2024
1 parent 1105936 commit a54e9ff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [2023.3.5]

### Fixes
- Fixed request param cast issue for ImpEx execution [#1018](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/1018)

## [2023.3.4]

### Features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class HybrisImpexConsole(project: Project) : HybrisConsole(project, HybrisConsta
"scriptContent" to query,
"validationEnum" to importModeComboBox.selectedItem as String,
"encoding" to "UTF-8",
"maxThreads" to maxThreadsSpinner.value as String,
"maxThreads" to maxThreadsSpinner.value.toString(),
"_legacyMode" to "on", // Legacy Mode
"_enableCodeExecution" to "on",
"_distributedMode" to "on", // Distributed mode
Expand Down

0 comments on commit a54e9ff

Please sign in to comment.