gconklin
gconklin
When setting force_preemptive=True, it looks like only the first request gets an immediate 200 and all other following requests get a 401, and then a 200. I'm essentially doing this:...
https://github.com/requests/requests-kerberos/blob/master/requests_kerberos/kerberos_.py#L232 This bit of error handling is logging the stack trace twice. Perhaps one should be `log.error()` - or maybe both should be `log.error()` and leave it up to the...
this will prevent bot creators from accidentally adding 2 commands with the same command_keyword see also issue #25
UX / If photo is assigned to multiple albums no links are available on info tab of the edit dialog
#### 1. What is not working as documented? When you edit a photo (pencil icon), click the gear, click one of the "Albums" links, goes to just /library and not...
when using the bot framework in a service, I needed a way to gracefully stop the process loop from an external trigger. ```python bot = WebexBot(...) def graceful_exit() cysystemd.daemon.notify(cysystemd.daemon.Notification.STOPPING) bot.stop()...