We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db09d7f commit 285cc99Copy full SHA for 285cc99
1 file changed
langfuse/_task_manager/media_manager.py
@@ -49,7 +49,6 @@ def process_next_media_upload(self) -> None:
49
50
self._queue.task_done()
51
except Empty:
52
- self._log.debug("Queue: Media upload queue is empty, waiting for new jobs")
53
pass
54
except Exception as e:
55
self._log.error(
@@ -248,7 +247,7 @@ def _process_upload_media_job(
248
247
249
headers = {"Content-Type": data["content_type"]}
250
251
- # In self-hosted setups with GCP, do not add unsupported headers that fail the upload
+ # In self-hosted setups with GCP, do not add unsupported headers that fail the upload
252
is_self_hosted_gcs_bucket = "storage.googleapis.com" in upload_url
253
254
if not is_self_hosted_gcs_bucket:
0 commit comments