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
TLDR; save history to $HOME/.local/state/influx/history if $XDG_STATE_HOME is not defined otherwise to $XDG_STATE_HOME/influx/history instead of $HOME/influx_history.
The XDG Base Directory Specification is based on the following concepts:
There is a single base directory relative to which user-specific state data should be written. This directory is defined by the environment variable $XDG_STATE_HOME.
The $XDG_STATE_HOME contains state data that should persist between (application) restarts, but that is not important or portable enough to the user that it should be stored in $XDG_DATA_HOME. It may contain:
actions history (logs, history, recently used files, …)
TLDR; save history to
$HOME/.local/state/influx/history
if$XDG_STATE_HOME
is not defined otherwise to$XDG_STATE_HOME/influx/history
instead of$HOME/influx_history
.From XDG Base Directory Specification:
Looks like relevant lines are around here:
influx-cli/clients/v1_shell/v1_shell.go
Line 153 in 3a2e139
The text was updated successfully, but these errors were encountered: