Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/update vertx #549

Merged
merged 10 commits into from
Jan 20, 2024
Merged

Feature/update vertx #549

merged 10 commits into from
Jan 20, 2024

Conversation

mcweba
Copy link
Collaborator

@mcweba mcweba commented Jan 17, 2024

No description provided.

Copy link

codecov bot commented Jan 17, 2024

Codecov Report

Attention: 100 lines in your changes are missing coverage. Please review.

Comparison is base (6978e34) 47.56% compared to head (edaee45) 47.44%.

Files Patch % Lines
...ush/gateleen/core/http/LocalHttpClientRequest.java 0.00% 20 Missing ⚠️
...ush/gateleen/core/http/DummyHttpServerRequest.java 10.00% 18 Missing ⚠️
...in/java/org/swisspush/gateleen/qos/QoSHandler.java 0.00% 5 Missing ⚠️
.../java/org/swisspush/gateleen/hook/HookHandler.java 0.00% 4 Missing ⚠️
...va/org/swisspush/gateleen/scheduler/Scheduler.java 0.00% 4 Missing ⚠️
...gateleen/core/http/FastFailHttpServerResponse.java 0.00% 3 Missing ⚠️
...sh/gateleen/core/resource/CopyResourceHandler.java 0.00% 3 Missing ⚠️
...ush/gateleen/core/storage/HttpResourceStorage.java 0.00% 3 Missing ⚠️
...swisspush/gateleen/expansion/ExpansionHandler.java 25.00% 3 Missing ⚠️
...a/org/swisspush/gateleen/player/player/Client.java 0.00% 3 Missing ⚠️
... and 24 more
Additional details and impacted files
@@              Coverage Diff              @@
##             develop     #549      +/-   ##
=============================================
- Coverage      47.56%   47.44%   -0.12%     
- Complexity      1788     1790       +2     
=============================================
  Files            225      225              
  Lines          11770    11815      +45     
  Branches        1233     1237       +4     
=============================================
+ Hits            5598     5606       +8     
- Misses          5677     5715      +38     
+ Partials         495      494       -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@hiddenalpha hiddenalpha requested a review from ljucam January 19, 2024 15:35
@@ -89,7 +89,7 @@ private void updateSchedulers(Buffer buffer) {
try {
schedulers = schedulerFactory.parseSchedulers(buffer);
} catch(ValidationException validationException) {
log.error("Could not parse schedulers: " + validationException.toString());
log.error("Could not parse schedulers: " + validationException);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

-  log.error("Could not parse schedulers: " + validationException);
+  log.error("Could not parse schedulers: {}", validationException);

@@ -101,7 +101,7 @@ public boolean handleSchedulerResource(final HttpServerRequest request) {
try {
schedulerFactory.parseSchedulers(buffer);
} catch (ValidationException validationException) {
log.warn("Could not parse schedulers: " + validationException.toString());
log.warn("Could not parse schedulers: " + validationException);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

-  log.warn("Could not parse schedulers: " + validationException);
+  log.warn("Could not parse schedulers: {}", validationException);

@@ -90,7 +90,7 @@ public boolean handleValidationResource(final HttpServerRequest request) {
extractValidationValues(validationResourceBuffer);
} catch (ValidationException validationException) {
updateValidationResource();
log.error("Could not parse validation resource: " + validationException.toString());
log.error("Could not parse validation resource: " + validationException);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

- log.error("Could not parse validation resource: " + validationException);
+ log.error("Could not parse validation resource: {}", validationException);

@hiddenalpha hiddenalpha requested a review from Kusig January 19, 2024 15:49
# Conflicts:
#	gateleen-core/src/main/java/org/swisspush/gateleen/core/configuration/ConfigurationResourceManager.java
#	gateleen-core/src/main/java/org/swisspush/gateleen/core/lock/lua/ReleaseLockRedisCommand.java
@mcweba mcweba merged commit 0b67285 into develop Jan 20, 2024
4 of 6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants