Aleksandr Vinokurov

Results 15 comments of Aleksandr Vinokurov

Yes, there are some calls of this delegate. But what should I do to recover these erroneous tiles?

Check all your 3 paths for .erlang.cookie to be equal: 1. C-x C-f ~/.erlang.cookie 2. C-x C-f ~/../../.erlang.cookie 3. In Cygwin Bash: cat ~/.erlang.cookie

> Thanks @aleksandr-vin for your contribution. Could you please add a test for this case and we'll get it merged. @deusaquilus I tried to run tests locally but didn't make...

The workaround could be: ```scala flywayDefaults := flywayDefaults.value.configuration { import org.flywaydb.core.internal.configuration.ConfigUtils import java.io.File ConfigUtils.loadConfigurationFile(new File("src/main/resources/flyway/flyway.conf"), "UTF-8", true) } ```

Hello, nice feature. I'd rename the option name to `--root` with `json` as default value and accompany it with `--noroot` to remove the whole `json.` from the output. I just...

Does not look like that. The one you're referencing is caused by ``` Caused by: java.lang.NullPointerException: Cannot invoke "org.jetbrains.kotlin.com.intellij.psi.impl.source.codeStyle.IndentHelper.getIndent(org.jetbrains.kotlin.com.intellij.psi.PsiFile, org.jetbrains.kotlin.com.intellij.lang.ASTNode)" because the return value of "org.jetbrains.kotlin.com.intellij.psi.impl.source.codeStyle.IndentHelper.getInstance()" is null ``` and...

Does not work for me. Tried both (with `-traditional` and without). Still fails when running on fly.io: ``` 2023-12-12T17:54:35.221 app[56833260f61738] ams [info] > [email protected] prestart /app 2023-12-12T17:54:35.221 app[56833260f61738] ams [info]...

Checked with adopt-tapir's generated projects with ZIO and zio-http vs http4s server implementations, replacing `Endpoints.scala` with: ```scala package com.softwaremill import sttp.tapir._ import sttp.tapir.ztapir.ZServerEndpoint import zio.ZIO import sttp.model.Part import sttp.tapir.generic.auto._ object...

Exception is good as we can test for it in our test suites and know when support will be added :) Thanks