Skip to content

Commit

Permalink
Fix database name param
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaojinchao95 committed Oct 28, 2024
1 parent 53e65f3 commit 429f12c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public YamlComputeNodeData swapToYamlConfiguration(final ComputeNodeData data) {
YamlComputeNodeData result = new YamlComputeNodeData();
result.setAttribute(data.getAttribute());
result.setVersion(data.getVersion());
result.setDatabaseName(data.getVersion());
result.setDatabaseName(data.getDatabaseName());
return result;
}

Expand Down

0 comments on commit 429f12c

Please sign in to comment.