We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the issue DataStorage rejects localhost and 127.0.0.1 requests other than the IP set as Service's Host in configuration.toml.
To Reproduce
t25kim@t25kim:~/work/edge-home-orchestration-go$ curl -X POST "10.113.70.227:49986/api/v1/resource/int" -H "accept: text/plain" -H "Content-Type: text/plain" -d 123 t25kim@t25kim:~/work/edge-home-orchestration-go$ curl 10.113.70.227:49986/api/v1/resource/int [{"id":"962444ff-4294-4136-8b24-1eca535da035","created":1634703497600,"origin":1634703497598631070,"device":"edge-orchestration-c1b23cc6-0767-400a-9cf0-36e1b3902da2","name":"int","value":"123","valueType":"Int64"}] t25kim@t25kim:~/work/edge-home-orchestration-go$ curl -X POST "127.0.0.1:49986/api/v1/resource/int" -H "accept: text/plain" -H "Content-Type: text/plain" -d 1 curl: (7) Failed to connect to 127.0.0.1 port 49986: Connection refused t25kim@t25kim:~/work/edge-home-orchestration-go$ curl -X POST "localhost:49986/api/v1/resource/int" -H "accept: text/plain" -H "Content-Type: text/plain" -d 1 curl: (7) Failed to connect to localhost port 49986: Connection refused
Expected solution
Alternative
The text was updated successfully, but these errors were encountered:
@NiranjanPatil25 @suresh-lc @nitu-s-gupta Please take a look and share your idea.
Sorry, something went wrong.
tiokim
MoonkiHong
suresh-lc
NiranjanPatil25
No branches or pull requests
Describe the issue
DataStorage rejects localhost and 127.0.0.1 requests other than the IP set as Service's Host in configuration.toml.
To Reproduce
Expected solution
Alternative
The text was updated successfully, but these errors were encountered: