Rob Brackett
Rob Brackett
Just checking in on this again, @bsphere, any changes this needs?
This is now updated with tests.
This worked for me with node-forge: ``` javascript var forge = require("node-forge"); var p12Buffer = fs.readFileSync("thekey.p12"); var p12Base64 = p12Buffer.toString("base64"); var p12Der = forge.util.decode64(p12Base64); var p12Asn1 = forge.asn1.fromDer(p12Der); var p12...
Guess this is kind of related to https://github.com/stellar/horizon/issues/119, just from the client perspective. Didn’t see that one before I posted here :grimacing:
Looks like this is probably happening because: 1. The source parser attaches the `# @!endgroup` comment to the `class
Anyway, I’m happy to work on a PR for this if someone here has a preference for one of the two solutions above.
I'm seeing a similar issue in a codebase I've recently started working on and was able to narrow it down (in at least one of the cases) to a polygon...
@lgierth @VictorBjelkholm Sounds like we are all agreed on needing to do something for this. Where does this work need to happen and how can we best track it? Who...
@lgierth @VictorBjelkholm is there any part of this a community member can write or prototype that you can then fit into PL’s infrastructure? e.g: - Library of functions that, given...
Hmmm, it doesn’t seem like there’s anything in toolbelt for retrying or that would cover a case like this. It also feels a bit hacky to wrap my retry/backoff logic...