-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DF-19335 add known issues section to readme generator (#3090)
* DF-19335 add known issues section to readme generator * update readmes * add changeset
- Loading branch information
1 parent
985bf4e
commit a1c6726
Showing
7 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,7 @@ | ||
--- | ||
'@chainlink/icap-adapter': patch | ||
'@chainlink/tp-adapter': patch | ||
'@chainlink/ea-scripts': patch | ||
--- | ||
|
||
Add generated known issues section to readme |
This file contains 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 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 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 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,19 @@ | ||
## Known Issues | ||
|
||
### Concurrent connections | ||
|
||
Context: TP and ICAP EAs use the same credentials, and often there are issues with the set of credentials not having concurrent (ie: 2+) connections enabled. | ||
|
||
- With both TP and ICAP EAs off, try the following commands to check if this is the case: | ||
|
||
```bash | ||
wscat -c 'ws://json.mktdata.portal.apac.parametasolutions.com:12000' | ||
``` | ||
|
||
- Once connected, send: | ||
|
||
```json | ||
{ "msg": "auth", "user": "USER_CRED", "pass": "API_KEY", "mode": "broadcast" } | ||
``` | ||
|
||
- If credentials work for a single connection, open a second terminal and run the same commands while the first is still running. The expected behaviour is that both terminals should fire out a massive amount of price data. |
This file contains 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 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,19 @@ | ||
## Known Issues | ||
|
||
### Concurrent connections | ||
|
||
Context: TP and ICAP EAs use the same credentials, and often there are issues with the set of credentials not having concurrent (ie: 2+) connections enabled. | ||
|
||
- With both TP and ICAP EAs off, try the following commands to check if this is the case: | ||
|
||
```bash | ||
wscat -c 'ws://json.mktdata.portal.apac.parametasolutions.com:12000' | ||
``` | ||
|
||
- Once connected, send: | ||
|
||
```json | ||
{ "msg": "auth", "user": "USER_CRED", "pass": "API_KEY", "mode": "broadcast" } | ||
``` | ||
|
||
- If credentials work for a single connection, open a second terminal and run the same commands while the first is still running. The expected behaviour is that both terminals should fire out a massive amount of price data. |