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

Fix the warn log issue caused by not setting the dapr.client.grpcPort… #1289

Merged
merged 2 commits into from
Mar 31, 2025

Conversation

seal90
Copy link
Contributor

@seal90 seal90 commented Mar 29, 2025

… variable

Description

Please explain the changes you've made
Add null verification for io.dapr.spring.boot.autoconfigure.client.DaprClientAutoConfiguration#createPropertiesFromConnectionDetails

  private Properties createPropertiesFromConnectionDetails(DaprConnectionDetails daprConnectionDetails) {
    final Map<String, String> propertyOverrides = new HashMap<>();
    propertyOverrides.put(Properties.HTTP_ENDPOINT.getName(), daprConnectionDetails.httpEndpoint());
    if(daprConnectionDetails.httpPort() != null) {
      propertyOverrides.put(Properties.HTTP_PORT.getName(), String.valueOf(daprConnectionDetails.httpPort()));
    }
    propertyOverrides.put(Properties.GRPC_ENDPOINT.getName(), daprConnectionDetails.grpcEndpoint());
    if(daprConnectionDetails.grpcPort() != null) {
      propertyOverrides.put(Properties.GRPC_PORT.getName(), String.valueOf(daprConnectionDetails.grpcPort()));
    }
    return new Properties(propertyOverrides);
  }

When using the grpc protocol without configuring dapr.client.grpcPort, the following warn information will be printed.This is because put("dapr.grpc.port", "null") in the above code causes DaprClientAutoConfiguration#daprWorkflowClient to use Property#get to parse the configuration and fail to handle the string "null"

2025-03-29T09:49:14.430+08:00  WARN 4660 --- [dapr-demo] [           main] io.dapr.config.Property                  : Invalid override value in property: dapr.grpc.port
2025-03-29T09:49:15.080+08:00  WARN 4660 --- [dapr-demo] [           main] io.dapr.config.Property                  : Invalid override value in property: dapr.grpc.port
2025-03-29T09:49:15.594+08:00  WARN 4660 --- [dapr-demo] [           main] io.dapr.config.Property                  : Invalid override value in property: dapr.grpc.port
2025-03-29T09:49:16.474+08:00  WARN 4660 --- [dapr-demo] [           main] io.dapr.config.Property                  : Invalid override value in property: dapr.grpc.port

Issue reference

We strive to have all PR being opened based on an issue, where the problem or feature have been discussed prior to implementation.

Please reference the issue this PR will close: #1292

Checklist

Please make sure you've completed the relevant tasks for this PR, out of the following list:

  • Code compiles correctly
  • Created/updated tests
  • Extended the documentation

@seal90 seal90 requested review from a team as code owners March 29, 2025 02:18
@artur-ciocanu
Copy link
Contributor

@seal90 thanks a lot for your contribution!

I have a few asks:

  • Could you please open an issue for your fix. I know it might sound as bureaucratic, but we want to make sure all the fixes have proper paper trail
  • Could you please make sure that you sign your commits so the DCO task doesn't fail.

Thank you.

artur-ciocanu
artur-ciocanu previously approved these changes Mar 29, 2025
Copy link
Contributor

@artur-ciocanu artur-ciocanu left a comment

Choose a reason for hiding this comment

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

Lovely! Thanks for the fix!

Copy link
Contributor

@mcruzdev mcruzdev left a comment

Choose a reason for hiding this comment

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

Nice catch!

@mcruzdev
Copy link
Contributor

Errors are related to checkstyle.

@seal90
Copy link
Contributor Author

seal90 commented Mar 30, 2025

Okay I got it.

@cicoyle cicoyle merged commit 02733dc into dapr:master Mar 31, 2025
7 of 9 checks passed
Copy link

codecov bot commented Mar 31, 2025

Codecov Report

Attention: Patch coverage is 0% with 4 lines in your changes missing coverage. Please review.

Project coverage is 75.47%. Comparing base (d759c53) to head (f35c63b).
Report is 123 commits behind head on master.

Files with missing lines Patch % Lines
...oconfigure/client/DaprClientAutoConfiguration.java 0.00% 2 Missing and 2 partials ⚠️
Additional details and impacted files
@@             Coverage Diff              @@
##             master    #1289      +/-   ##
============================================
- Coverage     76.91%   75.47%   -1.44%     
- Complexity     1592     1616      +24     
============================================
  Files           145      193      +48     
  Lines          4843     5101     +258     
  Branches        562      555       -7     
============================================
+ Hits           3725     3850     +125     
- Misses          821      935     +114     
- Partials        297      316      +19     

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

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

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.

The warn log issue caused by not setting the dapr.client.grpcPort variable
5 participants