Skip to content

Commit

Permalink
#20602 only on new connection wizard
Browse files Browse the repository at this point in the history
  • Loading branch information
Destrolaric committed Jan 23, 2024
1 parent baa1e88 commit ce5036f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,9 @@ public void loadSettings() {
@Override
public void saveSettings(DBPDataSourceContainer dataSource) {
DBPConnectionConfiguration connectionInfo = dataSource.getConnectionConfiguration();
applyGlobalProperties(connectionInfo);
if (getSite().isNew()) {
applyGlobalProperties(connectionInfo);
}
if (typeURLRadio != null) {
connectionInfo.setConfigurationType(
typeURLRadio.getSelection() ? DBPDriverConfigurationType.URL : DBPDriverConfigurationType.MANUAL);
Expand Down

0 comments on commit ce5036f

Please sign in to comment.