diff options
author | https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4 <https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4@web> | 2015-12-21 19:50:38 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2015-12-21 19:50:38 +0000 |
commit | 37cc4a91c85fbbe8a45986856f3634916398cd9f (patch) | |
tree | c3b715ad3a733f66b0f8b701c8adc1039949ea4c /doc | |
parent | f59117137b46910d51d4f744d4cfc0c009ddb358 (diff) |
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/info_--json_lists_backend_usage_stats_as_a_list_of_lists.mdwn | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/doc/bugs/info_--json_lists_backend_usage_stats_as_a_list_of_lists.mdwn b/doc/bugs/info_--json_lists_backend_usage_stats_as_a_list_of_lists.mdwn new file mode 100644 index 000000000..8d9fa8c99 --- /dev/null +++ b/doc/bugs/info_--json_lists_backend_usage_stats_as_a_list_of_lists.mdwn @@ -0,0 +1,32 @@ +### What version of git-annex are you using? On what operating system? + +5.20151116+gitg5416a1a-1~ndall+1 + +### Please provide any additional information below. + +[[!format sh """ + "backend usage": [ + [ + "MD5E", + 2 + ], + [ + "SHA256E", + 2 + ] + ], +"""]] + +instead of more logical + +[[!format sh """ + + "backend usage": { + "MD5E": 2, + "SHA256E": 2 + } +"""]] + +also it seems it just doubles them since I have only 2 files, 1 for each backend (as reported also by info "local annex keys": 2). + +[[!meta author=yoh]] |