Alexander Mays

Results 15 comments of Alexander Mays

@adriandelarco @RYG81 Forked it here: https://github.com/maysale01/brogrammer-theme

@kenwheeler I was a bit concerned as I had just ripped the icons directly from SodaReloaded theme, but turns out they're from SetiUI https://github.com/mrmartineau/SetiUI-Icons-Sublime I'll submit a PR.

@kenwheeler PR is open if you're still interested.

Once a RDS connection is established it remains valid - even after the underlying session tokens are expired. On every [new session](https://github.com/temporalio/temporal/pull/2830/files#diff-e334e328efecbb432db6b97313f1d5190533f85018355ea3aef701db4d56ed10R83) the [AWS sdk is invoked to get credentials](https://github.com/temporalio/temporal/pull/2830/files#diff-357f724496a420b8acb1f8e71d84ca0a60279d034898195efdeda5c1eed557f4R99),...

I think you're right - I'd switched to password auth as I couldn't wait for the 17.0 release. It seems sqlx does cache the DSN and re-use it on connection...

> 😼 this is great! I've never had time for it and honestly `curl` was good enough. Is the auth a main motivation for you? I need to review this....

@aaronjensen Seems that the version you linked is no longer supported and incompatible with latest depencies. Any chance this feature can be implemented in this repo?

Edit: I just realized I was embedding the struct! Nevermind!

@go-jet Actually, I may have closed this prematurely. Here is a full example showing a panic: ```golang package main import ( "database/sql" "fmt" "net/http" mysql "github.com/go-jet/jet/v2/mysql" _ "github.com/go-sql-driver/mysql" ) type...

It’s a contrived example but regardless of the type shouldn’t it be skipped with a tag of alias:”-“. I don’t think the expected behavior as you’ve described is a panic.