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
{ | |
"ipcMode": null, | |
"executionRoleArn": "arn:aws:iam::123:role/ecsTaskExecutionRole", | |
"containerDefinitions": [ | |
{ | |
"dnsSearchDomains": null, | |
"environmentFiles": null, | |
"logConfiguration": { | |
"logDriver": "awsfirelens", | |
"secretOptions": null, |
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
kafka-node:KafkaClient Connect attempt 1 +0ms | |
kafka-node:KafkaClient Trying to connect to host: host.docker.internal port: 9092 +2ms | |
kafka-node:KafkaClient createBroker host.docker.internal 9092 +1ms | |
consumer working... ^C to exit | |
kafka-node:KafkaClient Sending versions request to host.docker.internal:9092 +6ms | |
kafka-node:KafkaClient broker socket connected {"host":"host.docker.internal","port":"9092"} +3ms | |
kafka-node:KafkaClient connected to socket, trying to load initial metadata +1ms | |
kafka-node:KafkaClient missing apiSupport waiting until broker is ready... +0ms | |
kafka-node:KafkaClient waitUntilReady [BrokerWrapper host.docker.internal:9092 (connected: true) (ready: false) (idle: false) (needAuthentication: false) (authenticated: false)] +0ms | |
kafka-node:KafkaClient Received versions response from host.docker.internal:9092 +3ms |
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
kafka-node:KafkaClient Connect attempt 1 +0ms | |
kafka-node:KafkaClient Trying to connect to host: host.docker.internal port: 9092 +2ms | |
kafka-node:KafkaClient createBroker host.docker.internal 9092 +0ms | |
consumer working... ^C to exit | |
kafka-node:KafkaClient Sending versions request to host.docker.internal:9092 +5ms | |
kafka-node:KafkaClient broker socket connected {"host":"host.docker.internal","port":"9092"} +2ms | |
kafka-node:KafkaClient connected to socket, trying to load initial metadata +0ms | |
kafka-node:KafkaClient missing apiSupport waiting until broker is ready... +1ms | |
kafka-node:KafkaClient waitUntilReady [BrokerWrapper host.docker.internal:9092 (connected: true) (ready: false) (idle: false) (needAuthentication: false) (authenticated: false)] +0ms | |
kafka-node:KafkaClient Received versions response from host.docker.internal:9092 +4ms |
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
2018/07/09 10:06:36 [INFO] Terraform version: 0.11.5 342c529aa58d824f2f2ed1f6ec6118059876aad0 | |
2018/07/09 10:06:36 [INFO] Go runtime version: go1.10 | |
2018/07/09 10:06:36 [INFO] CLI args: []string{"/Users/me/lib/terraform/terraform", "import", "-var-file=dev.tfvars", "module.collector_app-crawler.aws_glue_catalog_database.aws_glue_database_collector_app", "default"} | |
2018/07/09 10:06:36 [DEBUG] Attempting to open CLI config file: /Users/me/.terraformrc | |
2018/07/09 10:06:36 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2018/07/09 10:06:36 [INFO] CLI command args: []string{"import", "-var-file=dev.tfvars", "module.collector_app-crawler.aws_glue_catalog_database.aws_glue_database_collector_app", "default"} | |
2018/07/09 10:06:36 [TRACE] module source: "git::ssh://rep-gerrit-ams.it.here.com:29418/mobility/infra/terraform/modules/aws-glue-crawler_v1.0" | |
2018/07/09 10:06:36 [INFO] command: empty terraform config, returning nil | |
2018/07/09 10:06:36 [DEBUG] command: no data state file found for backend config | |
201 |
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
#include <algorithm> | |
#include <vector> | |
/** check if name names a valid path | |
* | |
*/ | |
inline bool path_exists(const std::string& name) { | |
struct stat buffer; | |