Shawn

Results 37 comments of Shawn

This operator provide something just like rpm-ostree with --apply-live. rpm-ostree focus on immutable and --apply-live provide some convenience. It is useful but can not cover all the cases. We still...

@pacoxu If you consider manage binary out of kubelet/kubeadm/kubectl, do you think luet (https://luet.io/) is kind of good solution? Luet is a Package Manager based on containers and packages are...

@luizbranco I tried to run promptui/_examples/confirm/main.go, I can find this problem about 30% chance. Crtl+C or Ctrl+D [shawn@se129 confirm]$ ./main ? Delete Resource? [y/N] █ panic: bytes.Buffer: truncation out of...

Hi @luizbranco, This issue is related on go version. go version go1.10 linux/amd64 (ubuntu 18.04) good go version go1.8.3 linux/amd64 (centos 7.4) bad go version go1.10.3 linux/amd64 (centos 7.4) good...

@agarciamontoro Thanks for support, after add back the primary key. It works.

https://github.com/mattermost/morph/ try use morph to handle migrations

https://stackoverflow.com/questions/48479616/alter-table-too-slow-in-postgres ALTER TABLE reactions ADD COLUMN IF NOT EXISTS channelid varchar(26) NOT NULL DEFAULT '';

UPDATE reactions SET channelid = COALESCE((select channelid from posts where posts.id = reactions.postid), '') WHERE channelid='';

1 row: 335.338 ms 10 rows: 3039.767 ms ``` mm=# EXPLAIN ANALYSE select COALESCE((select channelid from posts where posts.id = reactions.postid), '') from reactions WHERE channelid='' limit 10; QUERY PLAN...