about init queue
jhaoheng opened this issue · 0 comments
jhaoheng commented
- I update the
sqs-insight.conf
, and run it with docker (the conf at the below) - I use aws cli to list the queue, and only the default queue
aws --endpoint-url http://192.168.1.104:9324 sqs list-queues
{
"QueueUrls": [
"http://192.168.1.104:9324/queue/default"
]
}
- But I could see the queue tube on the http://localhost:9325 ...
sqs-insight.conf
{
"port": 9325,
"rememberMessages": 100,
"endpoints": [
{
"key": "notValidKey",
"secretKey": "notValidSecret",
"region": "us-east-1",
"url": "http://localhost:9324/queue/newqueue"
}
],
"dynamicEndpoints": [
{
"key": "notValidKey",
"secretKey": "notValidSecret",
"region": "us-east-1",
"url": "http://localhost:9324",
"visibility": 0
}
]
}