We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5ad13b commit 0181b4bCopy full SHA for 0181b4b
python/cog/server/clients.py
@@ -186,7 +186,7 @@ async def chunk_file_reader() -> AsyncIterator[bytes]:
186
# and is critical for upload training/quantization outputs
187
# if we get multipart uploads working or a separate API route
188
# then we could drop this
189
- if url and ".internal" in url:
+ if url and (".internal" in url or ".local" in url):
190
log.info("doing test upload to %s", url)
191
resp1 = await self.file_client.put(
192
url,
0 commit comments