-
Notifications
You must be signed in to change notification settings - Fork 242
Switch from https to ffdx #590
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
Conversation
|
Important: hyperledger/firefly-cli#156 should be merged before this change. |
Codecov Report
@@ Coverage Diff @@
## main #590 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 303 303
Lines 17437 17437
=========================================
Hits 17437 17437
Continue to review full report at Codecov.
|
peterbroadhurst
left a comment
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.
The fact the E2E is failing without hyperledger/firefly-cli#156 merging might mean we need a tweak to the migration code in FireFly:
firefly/internal/dataexchange/dxfactory/factory.go
Lines 32 to 42 in 00fda51
| func InitPrefix(prefix config.Prefix) { | |
| for name, plugin := range pluginsByName { | |
| plugin().InitPrefix(prefix.SubPrefix(name)) | |
| // Migration path for old plugin name | |
| // TODO: remove this | |
| if name == "ffdx" { | |
| plugin().InitPrefix(prefix.SubPrefix("https")) | |
| } | |
| } | |
| } |
|
Closing based on the observations in hyperledger/firefly-cli#156 (comment) |
Signed-off-by: Gabriel Indik <gabriel.indik@kaleido.io>
Signed-off-by: Peter Broadhurst <peter.broadhurst@kaleido.io>
8772cc6 to
496953d
Compare
|
I do believe we need to fix this default @gabriel-indik, so I've done some work to fix the migration to:
|
Signed-off-by: Peter Broadhurst <peter.broadhurst@kaleido.io>
Signed-off-by: Gabriel Indik gabriel.indik@kaleido.io