Tomáš Čarnecký

Results 47 comments of Tomáš Čarnecký

The `Sentry.startSpan()` API seems to be more honest about what it does, the callback argument is explicitly marked as nullable.

I can't use env variable, since the requests are sent by Octokit: ``` import { Octokit } from '@octokit/rest' const octokit = new Octokit({ auth: (await $`security find-generic-password -a github-com-personal-access-token...

Some other mongodb drivers have an option, called something like `auto_reconnect`, which will instruct the driver to automatically reconnect to the server if the connection goes down (due to server...

Automatic reconnect by default? That would work for me as well :)

I don't have access the the logs anymore. But the symptom was that after I restarted, the application didn't work anymore.

Oh, I deleted too much text while editing the comment, should have read 'after I restarted mongodb, the app...'

I think I'm hitting the same bug. I'm seeing this in the devtools console just before being redirected to the login page: > TypeError: n.original.channel_info is null

Apply this diff to fix this bug: ```diff diff --git a/src/client/src/views/forwards/ForwardTable.tsx b/src/client/src/views/forwards/ForwardTable.tsx index 64c25a34..e7897fc6 100644 --- a/src/client/src/views/forwards/ForwardTable.tsx +++ b/src/client/src/views/forwards/ForwardTable.tsx @@ -26,8 +26,8 @@ export const ForwardTable: FC = ({ days...

In my case, each github runner has its own workspace and even running under its own user account, so there should not be any cross-workspace conflicts.

The regression was introduced either in 20.0.4 or 20.0.5. I can try to narrow down which one it was. Looking at the changelog, nothing stands out (but there may have...