0

ubuntu 11.10 のマシンに s3cmd をインストールしました。s3 からデータをダウンロードしようとすると、このエラーが表示されます。また、持っているアクセス キーを使用して s3cmd を構成しました (.s3cfg ファイルはホーム フォルダーにあります)。

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    An unexpected error has occurred.
  Please report the following lines to:
   s3tools-bugs@lists.sourceforge.net
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Problem: KeyError: 'content-length'
S3cmd:   1.0.0

Traceback (most recent call last):
  File "/usr/bin/s3cmd", line 2006, in <module>
    main()
  File "/usr/bin/s3cmd", line 1950, in main
    cmd_func(args)
  File "/usr/bin/s3cmd", line 513, in cmd_object_get
    response = s3.object_get(uri, dst_stream, start_position = start_position, extra_label = seq_label)
  File "/usr/share/s3cmd/S3/S3.py", line 285, in object_get
    response = self.recv_file(request, stream, labels, start_position)
  File "/usr/share/s3cmd/S3/S3.py", line 691, in recv_file
    size_left = int(response["headers"]["content-length"])
KeyError: 'content-length'

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    An unexpected error has occurred.
    Please report the above lines to:
   s3tools-bugs@lists.sourceforge.net
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
4

1 に答える 1

1

SourceForge または github の s3tools プロジェクトで昨夜リリースされた 1.5.0-alpha2 など、s3cmd の新しいバージョンを試してください。この特定のケースでは、長さ 0 のファイルをダウンロードしようとしており、これがこのバグを引き起こします

于 2013-03-05T13:18:24.300 に答える