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
| compile group: 'org.springframework.cloud', name: 'spring-cloud-config-server' |
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
| group: 'org.springframework.cloud', name: 'spring-cloud-starter-config' | |
| spring.application.name=MYAPP | |
| spring.cloud.config.uri=http://localhost:8080 |
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
| /// REQUEST | |
| { | |
| "metadata": { | |
| "id": "setContactInfo", | |
| "name": "Copy the received contact info to the current profile", | |
| "description": "Copies the contact info received in a custom event called 'contactInfoSubmitted' to the current profile" | |
| }, | |
| "raiseEventOnlyOnceForSession": false, | |
| "condition": { | |
| "type": "eventTypeCondition", |
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
| { | |
| "sessionId" : "1234", | |
| "events":[ | |
| { | |
| "eventType":"contactInfoSubmitted", | |
| "scope": "example", | |
| "source":{ | |
| "itemType": "site", | |
| "scope":"example", | |
| "itemId": "mysite" |
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
| GET /campaigns/ | |
| POST /campaigns/ | |
| POST /campaigns/event/ | |
| DELETE /campaigns/event/{eventId}/ | |
| POST /campaigns/events/query/ | |
| POST /campaigns/query/ | |
| POST /campaigns/query/detailed/ | |
| GET /campaigns/{campaignID}/ | |
| DELETE /campaigns/{campaignID}/ | |
| GET /campaigns/{campaignID}/detailed/ |
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
| [WARN ][TcpTransport] [f018981bd0a5] exception caught on transport layer [Netty4TcpChannel{localAddress=/127.0.0.1:9300, remoteAddress=/127.0.0.1:61055}], closing connection | |
| java.lang.IllegalStateException: Received handshake message from unsupported version: [5.0.0] minimal compatible version is: [6.8.0]. |
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
| feature:repo-add camel 2.20.0 | |
| feature:install deployer camel-blueprint aries-blueprint | |
| cat > deploy/example.xml <<END | |
| <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"> | |
| <camelContext xmlns="http://camel.apache.org/schema/blueprint"> | |
| <route> | |
| <from uri="timer://test?fixedRate=true&period=2000" /> | |
| <setBody> | |
| <simple>Message at ${date:now:yyyy-MM-dd HH:mm:ss}</simple> |
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
| 2017-10-13 10:04:11,225 | INFO | 7 - timer://test | test | 28 - org.apache.camel.camel-core - 2.20.0 | Exchange[ExchangePattern: InOnly, BodyType: String, Body: Message at 2017-10-13 10:04:11] | |
| 2017-10-13 10:04:13,225 | INFO | 7 - timer://test | test | 28 - org.apache.camel.camel-core - 2.20.0 | Exchange[ExchangePattern: InOnly, BodyType: String, Body: Message at 2017-10-13 10:04:13] |
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
| "scripts": { | |
| "describe": "npm-scripts-info", | |
| "build": "run-s clean && run-p build:*", | |
| "build:main": "tsc -p tsconfig.json", | |
| "build:module": "tsc -p tsconfig.module.json", | |
| "fix": "run-s fix:*", | |
| "fix:prettier": "prettier \"src/**/*.ts\" --write", | |
| "fix:tslint": "tslint --fix --project .", | |
| "test": "run-s build test:*", | |
| "test:lint": "tslint --project . && prettier \"src/**/*.ts\" --list-different", |
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
| scalar DateTime | |
| type CustomLink { | |
| id: String! | |
| link: String | |
| name: String | |
| addedAt: DateTime | |
| addedBy: String | |
| tags: String | |
| } |