Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Bobrikov committed Sep 30, 2023
1 parent 34453e3 commit 3616b6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic

- demos: Fixed decimal overflow in `demo_uniswap` project.
- evm.node: Fixed incorrect log request parameters.
- cli: Added warning for timescaledb-ha users

## [7.0.0] - 2023-09-25

Expand Down
5 changes: 4 additions & 1 deletion src/dipdup/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,10 @@ def answers_from_terminal() -> Answers:
),
default=0,
)
if 'timescale-ha' in answers['postgres_image']:
if 'timescaledb-ha' in answers['postgres_image']:
message = ('WARNING: `timescaledb-ha` docker image uses an alternative data path.\n'
'Our generated files are configured correctly.')
echo(message, err=True, fg='red', bold=True)
answers['postgres_data_path'] = '/home/postgres/pgdata/data'

big_yellow_echo('Miscellaneous tunables; leave default values if unsure')
Expand Down

0 comments on commit 3616b6b

Please sign in to comment.