-
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
update PAPI and improve fellows-action #20
Conversation
10e0c3a
to
5927315
Compare
5927315
to
4e7975f
Compare
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.
Looks good to me.
I don't understand one thing though:
Before, we had two smoldot.addChain()
invocations - one for polkadot
and one for polkadot_collectives
.
Now, there is only one - for polkadot
.
What's up with that?
Well, as you can see, this is completely bogus. It's just adding a chain for the sake of it, which is not being used anywhere... 🤷 |
Yeah but you still have to add it so it can sync, right? I took a look and see that |
As per [the docs](https://github.com/paritytech/get-fellows-action?tab=readme-ov-file#deployment), unless we update those two files, the new version will not be deployed as a Docker package. Required to have #20's change. Also, we need this to be merged before polkadot-fellows/runtimes#265, else it will not work as the package doesn't currently exist.
Added logs that were removed during #20 This logs are necessary because, if the action is failing with a specific user, having their id can be very helpful at debugging.
Added logs that were removed during #20 This logs are necessary because, if the action is failing with a specific user, having their address can be very helpful at debugging.
It fixes this issue, significantly simplifies the code-base, and improves its performance (by paralellizing the identity requests).
A few clarifications:
finally
clause is to kill smoldot, because that will also effectively kill all the clients if they are still active.