Tadej Janež

Results 66 issues of Tadej Janež

Is it possible to map, e.g. a combination of Ctrl and left arrow keys to the Home key? If yes, how can I specify that in the YAML configuration?

They are created with the `git commit --fixup=` command and are supposed to be squashed. If they are present, they usually indicate that someone forgot to do `git rebase -i`...

suggestion

[Example](https://play.golang.org/p/cdSZMaXmvLR): ```go package main import ( "github.com/stretchr/testify/require" "testing" ) func TestUnsignedInt(t *testing.T) { var a uint64 = 1234567 var b uint64 = 98765523 require.Equal(t, a, b, "The two numbers should...

## Use case A team uses a CI system and would like to ensure documentation quality never regresses. To this end, the CI job has a step that runs `mkdocs...

Enhancement
Needs design decision

Example YAML file `input.yml`: ```yaml --- multiline_url_with_quotes: "https://github.com/cloudposse/\ github-authorized-keys/releases/download/1.0.3/\ github-authorized-keys_linux_amd64" multiline_url_without_quotes: https://github.com/cloudposse/\ github-authorized-keys/releases/download/1.0.3/\ github-authorized-keys_linux_amd64 ``` Yamllint 1.23.0 reports: ``` $ yamllint -d '{extends: default, rules: {quoted-strings: {required: only-when-needed}}}' input.yml input.yml...

##### SUMMARY Currently, if one has an unsigned transaction, he can't see its contents using `oasis-node consensus show_tx` command. Here is an example error: ``` $ oasis-node consensus show_tx -g...

c:cli

##### SUMMARY We should add the necessary tooling and document how to reproduce Oasis Core builds (at the moment, the `oasis-node` binary). This is also a prerequisite to be able...

c:ops
c:security

##### SUMMARY Set up automatic [packaging of Rust libraries into a Rust crate](https://doc.rust-lang.org/cargo/reference/publishing.html#packaging-a-crate) and [publishing the crate to Rust's crate registry](https://doc.rust-lang.org/cargo/reference/publishing.html), i.e. https://crates.io. ##### ISSUE TYPE - Release process

c:ops

##### SUMMARY Remove debug logging spam when syncing runtime's rounds. Currently, a debug message is emitted for each round that is being prepared for syncing: ``` ... trimmed ... {"awaiting_retry":"outstanding_mask{state-root}","caller":"node.go:1255","level":"debug","module":"worker/storage/committee","msg":"preparing...

c:runtime

##### SUMMARY Currently, if a node was initially synced with state sync and state sync is left enabled in node's configuration, a node may silently hang forever after node's restart....

c:consensus/cometbft
c:bug