goldstar611
goldstar611
I'd like to second this. I'm building a log parser and displaying a progress bar so the user knows how far along they are. Asking for input is obscured by...
Are you calling `client.auth_tls()` as seen in https://github.com/hvac/hvac/blob/main/docs/usage/auth_methods/index.rst ? ``` Authenticate to different auth backends ... # TLS client = Client(cert=('path/to/cert.pem', 'path/to/key.pem')) client.auth_tls() ```
> Is this possible? e.g. `/rq/?job_id=44f59d34-bb46-48c1-9604-4bd413ed9ffd` Extending this idea, the above would search all queues for a specified job id and below would search the specified queue for a specified...
I just ran this curl command and it worked great: ``` user@workstation:~$ curl -X POST https://myhost/dashboard/queue/failed/empty {"status":"OK"} ```
lol, the o.p. has about 4000 repos, most of which are forks and almost all have a branch named `bucharest` with a single commit related to adjusting of master/slave terminology....
A little late but you can set up 2 local git options `user.signingkey` and `commit.gpgsign true` and git will auto sign in the background.
I'm going to see how far I can get using gitless in combination with git-worktree. I've forked the code and fixed (as far as I can tell) 2 bugs so...
Were you ever able to figure out your issue? I have a PyQt gui to help debug grok patterns that may help if you're still stuck on this.
Looks like that line is missing the leading `r` to make it a literal. All of these other lines already have the `r`: https://github.com/garyelephant/pygrok/blob/de9e3f92f5a52f0fc101aaa0f694f52aee6afba8/pygrok/pygrok.py#L70 https://github.com/garyelephant/pygrok/blob/de9e3f92f5a52f0fc101aaa0f694f52aee6afba8/pygrok/pygrok.py#L76 https://github.com/garyelephant/pygrok/blob/de9e3f92f5a52f0fc101aaa0f694f52aee6afba8/pygrok/pygrok.py#L81 It's an easy fix
I think winpat's PR, https://github.com/garyelephant/pygrok/pull/39 would give you what you need, right?