Skip to content

Commit

Permalink
viewer add envar to silence protobuf python warnings
Browse files Browse the repository at this point in the history
we don't use it anyway but can't avoid the warning because it is at
the top level and thus would require a patch
  • Loading branch information
tgbugs committed Jun 9, 2023
1 parent aad9c83 commit c65ad1f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sparcur_internal/sparcur/viewer.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,9 @@
(if (eq? set-pwd? --sigh)
(apply system* exe args)
(apply system* exe args #:set-pwd? set-pwd?)))
'(("PYTHONBREAKPOINT" . "0"))))
'(("PYTHONBREAKPOINT" . "0")
; silence error logs during pennsieve top level import issue
("PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION" . "python"))))

(define (datetime-file-system-safe inexact-seconds)
"Y-M-DTHMS,6Z" ; FIXME this is producing garbages results with weird and bad padding
Expand Down

0 comments on commit c65ad1f

Please sign in to comment.