Skip to content

Commit 2748adb

Browse files
authored
Merge branch 'master' into jts-shared-glossary
2 parents 004592a + 67cfc27 commit 2748adb

File tree

2 files changed

+2
-2
lines changed
  • content/influxdb3/enterprise/admin/tokens/resource
  • layouts/shortcodes/influxdb3

2 files changed

+2
-2
lines changed

content/influxdb3/enterprise/admin/tokens/resource/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ token string in plain text.
514514

515515
The `influxdb3 create token` command supports the `--format json` option.
516516
By default, the command outputs the token string.
517-
For easier programmatic access to the command output, include `--format json`
517+
For easier programmatic access to the command output, include `--format json`
518518
with your command to format the output as JSON.
519519

520520
The `/api/v3/configure/token` endpoint outputs JSON format in the response body.

layouts/shortcodes/influxdb3/limit.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
{{- $limit := .Get 0 | default "database" -}}
44
{{- $modifier := .Get 1 | default 0 -}}
55
{{- $coreLimits := dict "database" 5 "table" 2000 "column" 500 -}}
6-
{{- $enterpriseLimits := dict "database" 100 "table" 4000 "column" 500 -}}
6+
{{- $enterpriseLimits := dict "database" 100 "table" 10000 "column" 500 -}}
77
{{- $productLimits := cond (eq $product "core") $coreLimits $enterpriseLimits -}}
88
{{ add (index $productLimits $limit) $modifier }}

0 commit comments

Comments
 (0)