Ivan Kasatenko
Ivan Kasatenko
I am wondering if the latest 1.22 firmware fixes the checksum calculation. Changelog doesn't seem to mention it, but hope's still there...
Here's how I managed to solve it. First I've created my own authenticated plug edition: ```elixir defmodule Publisher.Plugs.Authenticated do import Plug.Conn def init(options) do options end def call(conn, _) do...
@seantan Thanks for you comment. I'll gladly try to apply your patch to Capistrano 3, see if it works and give some feedback.
But my honest opinion is that there's been a few changes in Capistrano for the past 3 months, so this gem might as well just lag behind a little bit.
@seantan, nope, unfortunately it exercises exactly the same behavior after applying your patch.
Tons of gratitude to you! Now these were two secret ingredients: 1. Setting :scm to :rsync, and :rsync_scm to :git, necessity of which somehow fell out of my sight. 2....
/build is in fact writable. The problem rather seems to be in the behavior of the `ncp` library Nativefier uses under the hood. It preserves the permissions when copying, and...
This is the relevant code: ```python @router.post("/completions", response_model=ChatCompletionResponse) async def chat_completion(request: ChatCompletionRequest): ''' Completes a GPT4All model response. ''' return ChatCompletionResponse( id='asdf', created=time.time(), model=request.model, choices=[{}], usage={'prompt_tokens': 0, 'completion_tokens': 0, 'total_tokens':...
Stumbled upon the same issue. And you gave me a hint: > The tests that fail are not even using and database operations, they are just unit tests Turns out...
@paploo have you ever found a sound way to get around this?