Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
ngrislain committed Nov 9, 2023
1 parent c50b12b commit d5fa499
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.10] - 2023-11-09
### Fixed
- Retries only 10 times

## [0.4.9] - 2023-11-09
### Fixed
- Do not split budget in half when the query has no GROUP BY. Use all the budget in the aggregations
Expand Down
2 changes: 1 addition & 1 deletion src/io/postgresql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ impl fmt::Debug for Database {

impl DatabaseTrait for Database {
fn new(name: String, tables: Vec<Table>) -> Result<Self> {
try_some_times(100, || Database::try_get_existing(name.clone(), tables.clone()))
try_some_times(10, || Database::try_get_existing(name.clone(), tables.clone()))
.or_else(|_| Database::try_get_container(name, tables))
}

Expand Down

0 comments on commit d5fa499

Please sign in to comment.