Justin Chase

Results 185 comments of Justin Chase

I just came here to report this also, you need to be able to specify the default as true then specifically set it to false. Based on @KoalaBear84's `Quit` field...

The workaround is to invert the field name and default to false: ```cs [Option("no-quit", Required = false, Default = false, HelpText = "Do not quit after run")] public bool? NoQuit...

> ...which is the way most (not all, but most) boolean options are used in most software. Sorry citation needed :( Head over here: https://npm.runkit.com/minimist And try this code: ```js...

But those are all examples of booleans which default to _false_. The problem arises when you need a boolean which defaults to _true_. Not all boolean options are flags, some...

Well if you had the negatable flag on an option you could just skip printing it in the help text altogether since it has a non-negated entry also or perhaps...

I'm not sure I fully understand but it sounds like you may want a logging solution instead. Maybe try Loki + Promtail? That would allow you to have specific events...

Is your app shutting down when this happens by any chance? Or is this long running?

I don't know sorry, I had a different bug where a short lived process wasn't flushing stats on exit and I was wondering if this was related but if your...

The issue appears to be that the user is not an admin, and thus cannot access the admin sdk: https://stackoverflow.com/a/26469289/12958 On second thought, this does not make sense to me....

@tchimih How is that bypassing the directory api? It seems like its still calling the same api? I think what we're seeing is that it depends on what "account for...