We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In an automated 3.8.0 update, which broke the build, I noticed some suspicious reformatting:
From:
data.workers.get(host) match { case None => val workerQueue = new ArrayBlockingQueue[Url](32) worker(workerQueue, crawlerQueue) (data.copy(workers = data.workers + (host -> workerQueue)), workerQueue) case Some(queue) => (data, queue) }
to:
data.workers.get(host) match { case None => val workerQueue = new ArrayBlockingQueue[Url](32) worker(workerQueue, crawlerQueue)(data.copy(workers = data.workers + (host -> workerQueue)), workerQueue) case Some(queue) => (data, queue) }
The intent was to first call worker(workerQueue, crawlerQueue), and then return a tuple. So the reformatting seems wrong.
worker(workerQueue, crawlerQueue)
See the full PR
The text was updated successfully, but these errors were encountered:
Similar problems in tapir and in sttp
Sorry, something went wrong.
duplicate of #3789 and #3790.
Oh sorry, I didn't see anything in open issues and create a new one. Thanks, waiting for a release then :)
No branches or pull requests
In an automated 3.8.0 update, which broke the build, I noticed some suspicious reformatting:
From:
to:
The intent was to first call
worker(workerQueue, crawlerQueue)
, and then return a tuple. So the reformatting seems wrong.See the full PR
The text was updated successfully, but these errors were encountered: