Skip to content

Commit

Permalink
Merge branch 'chore/schema-examples' into chore/update-schema-response
Browse files Browse the repository at this point in the history
  • Loading branch information
v3g42 committed Oct 9, 2023
2 parents 24f5048 + 4b323c1 commit fe539a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions dozer-types/src/models/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,11 @@ impl SchemaExample for PostgresConfig {
fn example() -> Self {
Self {
user: Some("postgres".to_string()),
password: None,
password: Some("postgres".to_string()),
host: Some("localhost".to_string()),
port: Some(5432),
database: Some("postgres".to_string()),
sslmode: None,
connection_url: None,
..Default::default()
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion json_schemas/dozer.json
Original file line number Diff line number Diff line change
Expand Up @@ -1233,7 +1233,7 @@
"connection_url": null,
"database": "postgres",
"host": "localhost",
"password": null,
"password": "postgres",
"port": 5432,
"sslmode": null,
"user": "postgres"
Expand Down

0 comments on commit fe539a1

Please sign in to comment.