Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into event-endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashi1993 committed Dec 9, 2024
2 parents cd58793 + f43d9e6 commit 00320c0
Show file tree
Hide file tree
Showing 118 changed files with 12,267 additions and 10,565 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,7 @@
<MaxConnections>2000</MaxConnections>
<MaxConnectionsPerRoute>1500</MaxConnectionsPerRoute>
</HTTPConnectionPool>
<Identity>
<ConsentIDClaimName>consent_id</ConsentIDClaimName>
</Identity>
</Server>
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
<RequestRouter>org.wso2.financial.services.accelerator.gateway.executor.core.DefaultRequestRouter</RequestRouter>
{% endif %}
<FinancialServicesGatewayExecutors>
{% for type in financial_services.gateway.openbanking_gateway_executors.type %}
<{{type.name}}>
{% for executor in type.executors %}
{% for executors in financial_services.gateway.executors %}
<{{executors.type}}>
{% for executor in executors.executor %}
<Executor class="{{executor.name}}" priority="{{executor.priority}}"/>
{% endfor %}
</{{type.name}}>
</{{executors.type}}>
{% endfor %}
</FinancialServicesGatewayExecutors>
{% if financial_services.gateway.consent.validation.endpoint is defined %}
Expand Down Expand Up @@ -62,4 +62,11 @@
<MaxConnectionsPerRoute>{{financial_services.http_connection_pool.max_connections_per_route}}</MaxConnectionsPerRoute>
{% endif %}
</HTTPConnectionPool>
<Identity>
{% if financial_services.identity.consent_id_claim_name is defined %}
<ConsentIDClaimName>{{financial_services.identity.consent_id_claim_name}}</ConsentIDClaimName>
{% else %}
<ConsentIDClaimName>consent_id</ConsentIDClaimName>
{% endif %}
</Identity>
</Server>
5 changes: 1 addition & 4 deletions financial-services-accelerator/accelerators/fs-apim/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,11 @@
<configuration>
<filesets>
<fileset>
<directory>${project.basedir}/carbon-home/repository/components/lib</directory>
<directory>${project.basedir}/carbon-home/repository/components/dropins</directory>
<excludes>
<exclude>**/jjwt-0.9.1.jar</exclude>
</excludes>
</fileset>
<fileset>
<directory>${project.basedir}/carbon-home/repository/components/dropins</directory>
</fileset>
<fileset>
<directory>${project.basedir}/carbon-home/repository/deployment/server/webapps</directory>
</fileset>
Expand Down
Loading

0 comments on commit 00320c0

Please sign in to comment.