使用 --zone-file-format 的无用错误消息

Useless error message using --zone-file-format

运行(所有版本,plain+alpha+beta)zonefile.txt 从我当前的 DNS 提供商

下载
gcloud dns record-sets import --zone=some-zone-tld --zone-file-format ./zonefile.txt

失败并出现错误:

ERROR: gcloud crashed (AttributeError): 'SyntaxError' object has no attribute 'message'

对该错误消息的含义有任何想法吗?有没有人有我可以查看的工作示例区域文件?

我试过了,但对错误消息没有影响:

这是区域文件:

$ORIGIN intellifinder.de.
;A records
*.intellifinder.de. IN  1h  A   35.244.179.110
mail.intellifinder.de.  IN  1h  A   35.244.179.110
www.intellifinder.de.   IN  1h  A   35.244.179.110
api.intellifinder.de.   IN  1h  A   35.227.215.119
cloud.intellifinder.de. IN  1h  A   35.227.253.17
intellifinder.de.   IN  1m  A   93.191.155.240

;MX records
intellifinder.de.   IN  1h  MX  10  intellifinder-de.mail.protection.outlook.com.

;SOA records
@   IN  1h  SOA ns3.dandomain.dk.   hostmaster@dandomain.dk 2021082300  1h  1h  2w  5m

此错误消息表示文本文件中的语法定义不正确

您可以查看有关导入记录的更多信息here

该问题也可能与 gcloud shell 有关,为确认这一点,尝试再次导入文件,但在 command.

看看这个 GitHub issue 报告了同样的错误。