-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
feat/presentation exchange #4
base: main
Are you sure you want to change the base?
feat/presentation exchange #4
Conversation
… dependencies Signed-off-by: Ian Costanzo <[email protected]>
Signed-off-by: Ian Costanzo <[email protected]>
Signed-off-by: Ian Costanzo <[email protected]>
Signed-off-by: Ian Costanzo <[email protected]>
Signed-off-by: Ian Costanzo <[email protected]>
Signed-off-by: Ian Costanzo <[email protected]>
Signed-off-by: Ian Costanzo <[email protected]>
Signed-off-by: Ian Costanzo <[email protected]>
Signed-off-by: Ian Costanzo <[email protected]>
Signed-off-by: Ian Costanzo <[email protected]>
Signed-off-by: Ian Costanzo <[email protected]>
Signed-off-by: Ian Costanzo <[email protected]>
Signed-off-by: Ian Costanzo <[email protected]>
Signed-off-by: Ian Costanzo <[email protected]>
Signed-off-by: Kim Ebert <[email protected]>
Signed-off-by: Kim Ebert <[email protected]>
Signed-off-by: Ian Costanzo <[email protected]>
Mediator refactor
- Networking changes introduced in Docker 4.1.x and forward on Windows and MAC stop the direct use of the internal docker host IP returned by the `docker run --rm --net=host eclipse/che-ip` process. On Windows and MAC `host.docker.internal` needs to be used for internal connections between containers on separate docker networks. - `host.docker.internal` has been available on Windows and Mac since Docker Engine version 18.03 (March 2018). Support for `host.docker.internal` on Linux was introduced in version 20.10.0 (2020-12-08), but it does not run out of the box yet (as of Docker Engine 20.10.11 (2021-11-17)). You need to add `--add-host=host.docker.internal:host-gateway` to the `docker run` command in order for it to work. Signed-off-by: Wade Barnes <[email protected]>
…r-updates Add support for changes to internal Docker networking.
Signed-off-by: Kim Ebert <[email protected]>
Signed-off-by: Kim Ebert <[email protected]>
- This is an update to the previous commit to update the support for Docker networking. The `getDockerHost` has been pulled out and placed in a central location where it can be updated as needed rather than having to update dozens of scripts the next time there is a change. Signed-off-by: Wade Barnes <[email protected]>
…r-updates Centralize docker host IP script.
Signed-off-by: Kim Ebert <[email protected]>
Signed-off-by: Kim Ebert <[email protected]>
…uration into default file. Signed-off-by: Kim Ebert <[email protected]>
Signed-off-by: wadeking98 <[email protected]>
fixed dependabot alerts
Signed-off-by: Jason C. Leach <[email protected]>
…j-mediator chore: update docs on how to supply a URL
* chore: update docs Signed-off-by: Jason C. Leach <[email protected]> * chore: update docs Signed-off-by: Jason C. Leach <[email protected]> * chore: updates docs for clarity Signed-off-by: Jason C. Leach <[email protected]> * chore: updates docs Signed-off-by: Jason C. Leach <[email protected]> * chore: updates docs Signed-off-by: Jason C. Leach <[email protected]> * chore: updates docs Signed-off-by: Jason C. Leach <[email protected]> * chore: updates docs Signed-off-by: Jason C. Leach <[email protected]> * chore: updates docs Signed-off-by: Jason C. Leach <[email protected]> --------- Signed-off-by: Jason C. Leach <[email protected]>
Signed-off-by: Jason C. Leach <[email protected]>
…ion#73) Signed-off-by: Stephen Curran <[email protected]>
…ation#74) * Update ACA-Py set up to use Askar and Postgres 15 Signed-off-by: Stephen Curran <[email protected]> * Update docs and settings in load testing sample.env Signed-off-by: Stephen Curran <[email protected]> --------- Signed-off-by: Stephen Curran <[email protected]>
…or easier debugging Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
Important note: Verified state only checked for 5 seconds. We'll probably want to increase this |
pres_ex_id = r['presentation_exchange_id'] | ||
# Want to do a for loop | ||
iteration = 0 | ||
while iteration < 5: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let us not use 5, but something like READ_TIMEOUT_SECONDS here?
Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
…d locustClient.py Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
fix/debug/presentation exchange
Note on changes made:
I also verified that this works / nothing breaks by testing both of the changed scenarios. I will additionally make another, separate PR to put in the mediator message (for the 1kb test) now. |
Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
Signed-off-by: Alex Walker <[email protected]>
Using
locustMediatorPresentProof.py
, adds presentation exchange flows and scenarios toagent.js
andlocustClient.py
. Currently,locustMediatorPresentProof.py
is written such that the presentation exchange will happen, sequentially, after receiving first a credential.Open to making changes! Please let me know!