hantmac commented on PR #13866: URL: https://github.com/apache/dolphinscheduler/pull/13866#issuecomment-1522663175
> does connectionParams contains plaintext password? > > <img alt="863d8481fa97325dc2f7d95dc3a04d2" width="495" src="https://user-images.githubusercontent.com/17078980/234227563-aa54ad20-4a5a-4db4-a661-1fb3de4fd3c7.png"> Yes, you can get the password using the code ```java DatabendDataSourceParamDTO databendDataSourceParamDTO = new DatabendDataSourceParamDTO(); databendDataSourceParamDTO.setHost("localhost"); databendDataSourceParamDTO.setDatabase("default"); databendDataSourceParamDTO.setUserName("root"); databendDataSourceParamDTO.setPort(8000); databendDataSourceParamDTO.setPassword("123456"); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
