Skip to content

Commit ab4e931

Browse files
Upgrade to powsybl-parent-ws 10 (#80)
Signed-off-by: Franck LECUYER <[email protected]>
1 parent fea99ec commit ab4e931

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<groupId>com.powsybl</groupId>
1717
<artifactId>powsybl-parent-ws</artifactId>
18-
<version>8</version>
18+
<version>10</version>
1919
<relativePath/>
2020
</parent>
2121

src/main/java/org/gridsuite/gateway/filters/UserAdminControlGlobalPreFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public Mono<Void> filter(@NonNull ServerWebExchange exchange, @NonNull GatewayFi
4646

4747
if (maybeSubList != null) {
4848
String sub = maybeSubList.get(0);
49-
return userAdminService.userExists(sub).flatMap(userExist -> Boolean.TRUE.equals(userExist) ? chain.filter(exchange) : completeWithCode(exchange, HttpStatus.FORBIDDEN));
49+
return userAdminService.userExists(sub).flatMap(userExist -> Boolean.TRUE.equals(userExist) ? chain.filter(exchange) : completeWithCode(exchange, HttpStatus.FORBIDDEN));
5050
}
5151

5252
if (maybeClientIdList != null) {

0 commit comments

Comments
 (0)