Daniel Porteous (dport)
Daniel Porteous (dport)
First off, here is how you repro the problem: - Cargo.toml: https://gist.github.com/banool/f86dd2bb4ce2f2388c7fbf4850a98c3f - src/main.rs: https://gist.github.com/banool/fb3639310dc0ae9f2d01aecdd26a1e44 - src/mymacro.rs: https://gist.github.com/banool/0d5b1e4cb1e9055795d75a3e6631d454 Once you've got this, `cargo run` and check the generated YAML spec:...
## Repro Pull this repo: ``` git clone https://github.com/aptos-labs/aptos-core.git git checkout 63f1890 ``` Run cargo audit. You'll see that it reports the following problem: ``` Crate: scratchpad Version: 0.1.0 Title:...
# 🚀 Feature Request Note: This is not a priority right now, we likely won't look at this until after mainnet launch. As it is [now](https://github.com/aptos-labs/aptos-core/pull/1869) only a limited set...
### Description I've had user reports that the timeouts were too low (@msmouse) and I just witnessed it myself. This PR bumps the timeouts. ### Test Plan ``` yarn test...
This repro was adapted from a user report (https://discord.com/channels/945856774056083548/946123778793029683/1033788411405930496) that I then verified myself. `package.json`: ``` { "name": "bleh", "version": "1.0.0", "main": "index.js", "license": "MIT", "scripts": { "blah": "node index.js"...
### Description Setting `enabled: false` for the API in the node config didn't actually disable the API. ### Test Plan Config: ``` $ cat /tmp/no_api.yaml | grep -A 1 api:...
### Description Same as for https://github.com/aptos-labs/aptos-core/pull/5249. ### Test Plan Forge run in CI. - - - This change is [](https://reviewable.io/reviews/aptos-labs/aptos-core/5254)
### Description Currently if you pass in an explicit config path but there is no file at the path, or the config is missing, it just silently continues without even...
### Description As it is now, if you run this command and the node thread panics, it just prints the panic without exiting. Worse than that, if it returns an...
### Description This PR makes `/accounts//resources` return the cursor in the header. This is the easiest way to mitigate this issue quickly in a backwards compatible way. ### Test Plan...