-
Notifications
You must be signed in to change notification settings - Fork 31
New localstack_host format #45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
9735ba3
Use new LOCALSTACK_HOST format
simonrw d6e16fa
Add documentation on configuration
simonrw 2767b69
Do not listen to EDGE_PORT from environment
simonrw fa4492d
Handle partially given LOCALSTACK_HOST
simonrw 7563890
Bump version and add changelog entry
simonrw 120aad3
Format with black
simonrw b330cf7
Replace absent note
simonrw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
from localstack_client import config | ||
|
||
|
||
def test_default_endpoint(): | ||
assert config.get_service_endpoint("sqs") == "http://localhost:4566" | ||
|
||
|
||
def test_with_localstack_host(monkeypatch): | ||
monkeypatch.setenv("LOCALSTACK_HOST", "foobar:9999") | ||
assert config.get_service_endpoint("sqs") == "http://foobar:9999" | ||
|
||
|
||
def test_without_port(monkeypatch): | ||
monkeypatch.setenv("LOCALSTACK_HOST", "foobar") | ||
assert config.get_service_endpoint("sqs") == "http://foobar:4566" | ||
|
||
|
||
def test_without_host(monkeypatch): | ||
monkeypatch.setenv("LOCALSTACK_HOST", ":4566") | ||
assert config.get_service_endpoint("sqs") == "http://localhost:4566" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm inclined to remove this mapping altogether, as it has been painful and is no longer in use. This dates back to the
0.11.x
era (before we even introduced the edge port :) ), and is not working anymore anyways. v2 could be a good opportunity to get rid ofUSE_LEGACY_PORTS
! 🧹There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's leave it in for now and revisit later, just in case 👍