Skip to content

Commit a9fcdd9

Browse files
bors[bot]dibashthapaalallema
authored
Merge #557
557: chores: replace MEILISEARCH_HOST with MEILISEARCH_URL r=alallema a=dibashthapa # Pull Request ## Related issue Fixes #555 ## What does this PR do? - replaces MEILISEARCH_HOST by MEILISEARCH_URL as mentioned in the issue ## PR checklist Please check if your PR fulfills the following requirements: - [ ] Does this PR fix an existing issue, or have you listed the changes applied in the PR description (and why they are needed)? - [ ] Have you read the contributing guidelines? - [ ] Have you made sure that the title is accurate and descriptive of the changes? Thank you so much for contributing to Meilisearch! Co-authored-by: Dibash Thapa <[email protected]> Co-authored-by: Amélie <[email protected]>
2 parents fb0f65f + 84e7ae5 commit a9fcdd9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
stdin_open: true
88
working_dir: /home/package
99
environment:
10-
- MEILISEARCH_HOST=http://meilisearch:7700
10+
- MEILISEARCH_URL=http://meilisearch:7700
1111
depends_on:
1212
- meilisearch
1313
links:

tests/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22

33
MASTER_KEY = 'masterKey'
4-
BASE_URL = os.getenv('MEILISEARCH_HOST') if os.getenv('MEILISEARCH_HOST') else 'http://127.0.0.1:7700'
4+
BASE_URL = os.getenv('MEILISEARCH_URL', 'http://127.0.0.1:7700')
55

66
INDEX_UID = 'indexUID'
77
INDEX_UID2 = 'indexUID2'

0 commit comments

Comments
 (0)