slyoldfox
slyoldfox
@mighteemouse we have put together a docker image for our employees that use windows. ``` docker run -it --rm -v %userprofile%/.aws:/root/.aws beforeach/adfs:1.12.2 login --adfs-host your.sts.host.name --profile yourprofile --region us-west-1 --session-duration...
In our modulith framework, we use `@Exposed` https://bitbucket.org/beforeach/across/src/master/across-core/src/main/java/com/foreach/across/core/annotations/Exposed.java
@philipbjorge I had the same issues running with the aws-iam-authenticator binary, but since awscli now generates it with `aws eks get-token` exec I haven't bothered much in figuring out what...
@kkolk thanks for pinging me on this. I've updated the PR by merging master onto it and that seems to have fixed Travis indeed! I hope @nicklan has some time...
@nicklan seeing the same issue today, isn't the cause that: ``` while !env.ctrlcbool.load(Ordering::SeqCst) { if let Ok(amt) = reader.read_line(&mut line) { ``` `reader.read_line` is a blocking call? As far as...
@nikkonix I suppose this might be related to the fact that you have to login with an Oracle account right now? @tylerwalts any clue if this is the case and...
@iMicknl I had the same error locally and added some debug strings. If I understand correctly, it seems that `async_validate_input` drops back to the `else:` statement. The check: ``` 68...
@rjlee I *think* I had this at one point as well. I'm not sure what I did though. Maybe the token is cached on disk and it didn't delete it...
Ah yah. That was it lol. The exception ended there but the root cause was an Address Could Not Be Resolved exception. We might need to fix that first. The...
Well yes of course the mdns address must be the first option. But if the actual resolving fails during config flow, it would be interesting to have a better handling:...