Skip to content

Commit

Permalink
IssueIssue #435: Add the possibility to use the same connector with d…
Browse files Browse the repository at this point in the history
…ifferent connector variables

* Reformatted the code.
  • Loading branch information
CherfaElyes committed Oct 25, 2024
1 parent 784bc20 commit 47fed53
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,11 @@ private static Map<String, String> getDefaultConnectorVariables(final JsonNode c
* @param defaultVariables A map of default variables to be used during connector generation.
*/
private void generateNewConnectors(
final Path path,
final String filename,
final Map<String, AdditionalConnector> filteredConnectors,
final Map<String, String> defaultVariables
) {
final Path path,
final String filename,
final Map<String, AdditionalConnector> filteredConnectors,
final Map<String, String> defaultVariables
) {
// For each configuration, we create a new custom connector and a new variables map to be used in the connector update.
for (final Entry<String, AdditionalConnector> connectorConfigurationEntry : filteredConnectors.entrySet()) {
final String additionalConnectorId = connectorConfigurationEntry.getKey();
Expand Down

0 comments on commit 47fed53

Please sign in to comment.