Skip to content

Commit

Permalink
555
Browse files Browse the repository at this point in the history
  • Loading branch information
ymakedaq committed Nov 5, 2024
1 parent ee35de5 commit c4a30db
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ type DbmSpecParam struct {
func (m DbmSpecParam) getQueryParam() map[string]string {
p := make(map[string]string)
if m.DbType != nil {
p["spec_db_type"] = *m.DbType
if *m.DbType != model.PUBLIC_RESOURCE_DBTYEP {
p["spec_db_type"] = *m.DbType
}
}
if lo.IsNotEmpty(m.MachineType) {
p["spec_machine_type"] = m.MachineType
Expand Down

0 comments on commit c4a30db

Please sign in to comment.