You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
leads to the user error message of CommandException: The signurl command requires the pyopenssl library (try pip install pyopenssl or easy_install pyopenssl) which leads to confusion about how to proceed.
Workaround: install the current n-1 version of pyopenssl: pip3 install pyopenssl==23.2.0 which does indeed work
This
try : except
leads to a misleading error message if the nested dependency of, sayload_pkcs12
, no longer existsIt seems like the
HAVE_OPENSSL
valuegsutil/gslib/commands/signurl.py
Line 65 in a872f98
leads to the user error message of
CommandException: The signurl command requires the pyopenssl library (try pip install pyopenssl or easy_install pyopenssl)
which leads to confusion about how to proceed.Workaround: install the current n-1 version of pyopenssl:
pip3 install pyopenssl==23.2.0
which does indeed workTest case:
gsutil signurl -d 10m <some file...>
Related: #1753
The text was updated successfully, but these errors were encountered: