Correct directory structure for stow
This commit is contained in:
parent
70bc80bb28
commit
0425e3eabd
83 changed files with 3325 additions and 4218 deletions
|
|
@ -11,5 +11,9 @@ stow .vim
|
|||
stow .local
|
||||
if not /usr/local/bin/python3, symlink from /usr/bin
|
||||
same with: fish, bash, sh,
|
||||
add .local/bin to path
|
||||
|
||||
todo: configure users with ansible
|
||||
todo: setup omf in a way that makes sense
|
||||
todo: rsync
|
||||
todo: move vimwiki out of this repo, configure so that home has a /wiki and a /blog folder respectively, which are their own repos
|
||||
|
|
|
|||
1
dotfiles/bin/.local/bin/aliasrc
Normal file
1
dotfiles/bin/.local/bin/aliasrc
Normal file
|
|
@ -0,0 +1 @@
|
|||
#/usr/bin/fish
|
||||
18
dotfiles/bin/.local/bin/colors
Executable file
18
dotfiles/bin/.local/bin/colors
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
#!/bin/sh
|
||||
|
||||
# https://stackoverflow.com/questions/69138165/how-to-get-the-rgb-values-of-a-256-color-palette-terminal-color
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
xdef="$HOME/.Xresources"
|
||||
|
||||
colors=( $( sed -re '/^!/d; /^$/d; /^#/d; s/(\*color)([0-9]):/\10\2:/g;' $xdef | grep 'color[01][0-9]:' | sort | sed 's/^.*: *//g' )
|
||||
)
|
||||
|
||||
echo
|
||||
for i in {0..7}; do echo -en "\e[$((30+$i))m ${colors[i]} \u2588\u2588 \e[0m\n"; done
|
||||
echo
|
||||
for i in {8..15}; do echo -en "\e[1;$((22+$i))m ${colors[i]} \u2588\u2588 \e[0m\n"; done
|
||||
echo -e "\n"
|
||||
7
dotfiles/bin/.local/bin/colortest
Executable file
7
dotfiles/bin/.local/bin/colortest
Executable file
|
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh
|
||||
for i in {0..255} ; do
|
||||
printf "\x1b[38;5;${i}m%3d " "${i}"
|
||||
if (( $i == 15 )) || (( $i > 15 )) && (( ($i-15) % 12 == 0 )); then
|
||||
echo;
|
||||
fi
|
||||
done
|
||||
248
dotfiles/bin/.local/bin/fcp
Executable file
248
dotfiles/bin/.local/bin/fcp
Executable file
|
|
@ -0,0 +1,248 @@
|
|||
#!/bin/sh
|
||||
|
||||
# TODO:
|
||||
# * Look into ssh-hp :). (ie the slowness from ssh may just be from small
|
||||
# buffers).
|
||||
# * bring back stderr, currently there is no notification of errors, not even
|
||||
# ENODIR or device full.
|
||||
# * fcp src1 src2 src3 ... dst/ doesn't work (but glob does).
|
||||
# Need to take the last positional arg as dest (and unset it) then use
|
||||
# positional args at sources. Go through each one and make sure they are all
|
||||
# local because we don't support mixed remote and local.
|
||||
# * Doesn't work when the remote end is android. Although if I ssh over and run
|
||||
# the fcp_ script manually it does work!?! (Maybe something about android
|
||||
# tar, saw something else (what?) making a fifo instead of pipe.)
|
||||
# * There are a couple of calls to eval in which any redirect characters
|
||||
# (angle brackets) could lose our output. They need to be escaped.
|
||||
# * Not sure about the handling of paths ending in slash or not is proper.
|
||||
# (Eg where we rename the dest file.)
|
||||
# I assume if it has no slash it the directory being sent should be renamed
|
||||
# to the destination name
|
||||
# (unless it is an existing directory on the dest host).
|
||||
# * If the receiving (connecting) nc is started before the sending (server)
|
||||
# one it will wait for one second and try again. They are started in the
|
||||
# right order but if there are delays in starting the interpreter or
|
||||
# something that sleep may have to be changed to something more robust.
|
||||
# * If you want something more sophisticated look at http://www.slac.stanford.edu/~abh/bbcp/
|
||||
|
||||
portno=4365
|
||||
comp=""
|
||||
|
||||
usage() {
|
||||
cat <<EOM
|
||||
Usage: $(basename $0) [-c] [-p portno] [--] [srchost:]srcpath [[dsthost:]dstpath]
|
||||
|
||||
Copy files between hosts on a network. Uses tar and netcat (nc) for
|
||||
transferring data and ssh for setting up the transport.
|
||||
|
||||
\`dstpath\` defaults to the current directory, use "-" to get a tarball on
|
||||
stdout.
|
||||
|
||||
Options:
|
||||
-c Tell tar to use gzip compression.
|
||||
-p portno Port used by netcat. Defaults to $portno.
|
||||
EOM
|
||||
}
|
||||
|
||||
a1="$1"
|
||||
# Do a seperated gotopt run so we cat get the return code.
|
||||
getopt -Q -o hcp: -l help -- "${@}" >/dev/null || {
|
||||
ret=$?
|
||||
usage
|
||||
exit $ret
|
||||
}
|
||||
eval "set -- $(getopt -o hcp: -l help -- "${@}")"
|
||||
|
||||
# Sometimes set and/or getopt leave a -- there when it shouldn't be
|
||||
[ "$a1" != "--" ] && [ "$1" = "--" ] && shift
|
||||
|
||||
while [ -n "$1" ];do
|
||||
case "$1" in
|
||||
-h|--help)
|
||||
usage
|
||||
exit
|
||||
;;
|
||||
-c) comp="-z" ;;
|
||||
-p)
|
||||
portno="$2"
|
||||
shift
|
||||
;;
|
||||
--)
|
||||
shift
|
||||
break
|
||||
;;
|
||||
-*)
|
||||
echo "Unrecognized argument: $1"
|
||||
usage
|
||||
exit 1
|
||||
;;
|
||||
*) break ;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
while [ -n "$1" ];do
|
||||
case "$1" in
|
||||
*)
|
||||
if [ -z "$srcpath" ];then
|
||||
srcpath="$1"
|
||||
elif [ -z "$dstpath" ];then
|
||||
dstpath="$1"
|
||||
else
|
||||
echo "Too many positional arguments (expected 2)." >&2
|
||||
echo "Try escaping any globs in the destination path." >&2
|
||||
usage
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
if [ -z "$srcpath" ];then
|
||||
usage
|
||||
exit 1
|
||||
fi
|
||||
[ "$srcpath" = "." ] && srcpath="./"
|
||||
[ "$srcpath" = ".." ] && srcpath="../"
|
||||
[ "$dstpath" = "." ] && dstpath="./"
|
||||
[ "$dstpath" = ".." ] && dstpath="../"
|
||||
[ -z "$dstpath" ] && dstpath="./"
|
||||
|
||||
case "$srcpath" in
|
||||
*\\:*) continue ;;
|
||||
*:*)
|
||||
srchost="${srcpath%%:*}"
|
||||
srcpath="${srcpath#*:}"
|
||||
;;
|
||||
esac
|
||||
case "$dstpath" in
|
||||
*\\:*) continue ;;
|
||||
*:*)
|
||||
dsthost="${dstpath%%:*}"
|
||||
dstpath="${dstpath#*:}"
|
||||
;;
|
||||
esac
|
||||
|
||||
sendcmd() {
|
||||
dsthost="${1#*@}"
|
||||
srcpath="$2"
|
||||
srcdir="$(dirname "$srcpath")"
|
||||
srcbase="$(basename "$srcpath")"
|
||||
dstpath="$3"
|
||||
[ "${dstpath%/}" = "$dstpath" ] && dstbase="$(basename "$dstpath")"
|
||||
cat <<EOS
|
||||
#!/bin/sh
|
||||
srcdir="\$(eval echo "${srcdir}")"
|
||||
cd "\$srcdir" || echo \$?
|
||||
# Use find here to expand any globs. Eval doesn't like filenames with parens
|
||||
# in them. This can leave us with multiple newline seperated files hence we
|
||||
# pass them to tar below via stdin.
|
||||
srcbase="\$(find . -maxdepth 1 -name "${srcbase}" -exec basename {} \\;)"
|
||||
# Fallback in case the above failed for whatever reason.
|
||||
[ -z "\$srcbase" ] && srcbase="${srcbase}"
|
||||
if ! [ -d "\$srcdir/\$srcbase" ] && [ -n "$dstbase" ] && [ "$dstbase" != "-" ] ;then
|
||||
trans="--transform=s/\${srcbase}\$/$dstbase/"
|
||||
else
|
||||
# dummy argument so there isn't an empty "" passed to tar
|
||||
trans=--check-device
|
||||
fi
|
||||
tar --help 2>/dev/null | grep -q check-device || trans=v
|
||||
pv=pv
|
||||
type pv >/dev/null 2>&1 || pv=cat
|
||||
# Try nc twice, with a one second timeout. In case we get called before the
|
||||
# remote end has started up. May need to come up with something more
|
||||
# sophisticated in situations where we have to wait longer for the initial
|
||||
# setup.
|
||||
echo "\$srcbase" | tar -cT- ${comp} "\$trans" |
|
||||
\$pv | ( nc -q 0 -w 3 "${dsthost#*@}" $portno 2>/dev/null ||
|
||||
{ sleep 1 && nc -q 0 -w 3 "${dsthost#*@}" $portno ; } )
|
||||
EOS
|
||||
}
|
||||
|
||||
recvcmd() {
|
||||
dstpath="$1"
|
||||
srcbase="$(basename "$2")"
|
||||
cat <<EOS
|
||||
#!/bin/sh
|
||||
dstpath="\$(eval echo ${dstpath})"
|
||||
dstbase="\$(basename "\${dstpath}")"
|
||||
if [ -d "\$dstpath" ] || [ "\${dstpath%/}" != "\$dstpath" ] ;then
|
||||
dstdir="\$dstpath"
|
||||
# dummy argument so there isn't an empty "" passed to tar
|
||||
trans=--check-device
|
||||
else
|
||||
# Strip trailing component and rename the incoming root object to that.
|
||||
# I hope that is what was intended. If not make sure dstpath is
|
||||
# terminated with a slash (/).
|
||||
dstdir="\$(dirname "\$dstpath")"
|
||||
trans="--transform=s/^\([\.\/]*\)${srcbase}/\\1\$dstbase/"
|
||||
fi
|
||||
tar --help 2>/dev/null | grep -q check-device || trans=-v
|
||||
pv=pv
|
||||
type pv >/dev/null 2>&1 || pv=cat
|
||||
if [ "\$dstbase" != '-' ] ;then
|
||||
mkdir -p "\$dstdir" || exit \$?
|
||||
cd "\$dstdir" || exit \$?
|
||||
fi
|
||||
nc -lp $portno -w 20 | \$pv | {
|
||||
if [ "\$dstbase" != '-' ] ;then
|
||||
tar -x ${comp} "\$trans"
|
||||
else
|
||||
cat
|
||||
fi
|
||||
}
|
||||
EOS
|
||||
}
|
||||
|
||||
rpc() {
|
||||
ssh "$1" "export ff=/tmp/fcp_$$_\$\$_cmd ; cat > \$ff ; nohup sh -c \"sh \$ff && rm -f \$ff\" </dev/null >/dev/null 2>&1 &"
|
||||
[ $? -ne 0 ] && echo "Try escaping any ':' in a path if it is not supposed to be a host seperator." >&2
|
||||
}
|
||||
|
||||
myip() {
|
||||
# dig and nslookup and hosts aren't on all machines and don't look in
|
||||
# /etc/hosts. Getent isn't everywhere and sometimes returns ipv6 addreses on
|
||||
# non-ipv6 enabled hosts. getent ahostsv4 I don't know how prevalent that is.
|
||||
tip="$(ping -c1 -W0.1 ${1#*@} 2>&1 | tr -d '():' | awk '/^PING/{print $3}')"
|
||||
[ -n "$tip" ] &&
|
||||
ip route get "$tip" | sed -n 's/^.*src \([^ ]*\).*$/\1/p'
|
||||
}
|
||||
|
||||
if [ -n "$dsthost" ] && [ -n "$srchost" ];then
|
||||
recvcmd "$dstpath" "$srcpath" | rpc "$dsthost"
|
||||
sendcmd "$dsthost" "$srcpath" "$dstpath" | rpc "$srchost"
|
||||
exit $?
|
||||
elif [ -n "$dsthost" ];then
|
||||
recvcmd "$dstpath" "$srcpath" | rpc "$dsthost"
|
||||
sendcmd "$dsthost" "$srcpath" "$dstpath" > /tmp/fcp_$$_cmd
|
||||
sh /tmp/fcp_$$_cmd
|
||||
rm /tmp/fcp_$$_cmd
|
||||
exit $?
|
||||
elif [ -n "$srchost" ];then
|
||||
dsthost="$(myip "$srchost")"
|
||||
[ -z "$dsthost" ] && {
|
||||
echo "Couldn't find route to $srchost" >&2
|
||||
exit 1
|
||||
}
|
||||
recvcmd "$dstpath" "$srcpath" > /tmp/fcp_$$_cmd
|
||||
sh /tmp/fcp_$$_cmd &
|
||||
sendcmd "$dsthost" "$srcpath" "$dstpath" | rpc "$srchost"
|
||||
wait
|
||||
rm /tmp/fcp_$$_cmd
|
||||
exit $?
|
||||
else
|
||||
srcdir="$(dirname "$srcpath")"
|
||||
srcbase="$(basename "$srcpath")"
|
||||
if [ -d "$dstpath" ] || [ "${dstpath%/}" != "$dstpath" ];then
|
||||
dstdir="$dstpath"
|
||||
else
|
||||
dstdir="$(dirname "$dstpath")"
|
||||
fi
|
||||
# TODO: Handle file renames.
|
||||
dstpath="`eval echo ${dstpath}`"
|
||||
mkdir -p "$dstpath"
|
||||
tar -C "$srcdir" -c "$srcbase" | tar -C "$dstdir" -x
|
||||
exit $?
|
||||
fi
|
||||
|
||||
1
dotfiles/git/.config/git/README.md
Normal file
1
dotfiles/git/.config/git/README.md
Normal file
|
|
@ -0,0 +1 @@
|
|||
For repo-specific config, use .git/config in the repo itself
|
||||
122
dotfiles/lf/.config/lf/lfrc
Normal file
122
dotfiles/lf/.config/lf/lfrc
Normal file
|
|
@ -0,0 +1,122 @@
|
|||
# interpreter for shell commands
|
||||
set shell /usr/bin/fish
|
||||
|
||||
# set '-eu' options for shell commands
|
||||
# These options are used to have safer shell commands. Option '-e' is used to
|
||||
# exit on error and option '-u' is used to give error for unset variables.
|
||||
# Option '-f' disables pathname expansion which can be useful when $f, $fs, and
|
||||
# $fx variables contain names with '*' or '?' characters. However, this option
|
||||
# is used selectively within individual commands as it can be limiting at
|
||||
# times.
|
||||
# set shellopts '-eu'
|
||||
|
||||
# set internal field separator (IFS) to "\n" for shell commands
|
||||
# This is useful to automatically split file names in $fs and $fx properly
|
||||
# since default file separator used in these variables (i.e. 'filesep' option)
|
||||
# is newline. You need to consider the values of these options and create your
|
||||
# commands accordingly.
|
||||
# set ifs "\n"
|
||||
|
||||
# leave some space at the top and the bottom of the screen
|
||||
set scrolloff 10
|
||||
|
||||
# use enter for shell commands
|
||||
map <enter> shell
|
||||
|
||||
# execute current file (must be executable)
|
||||
map x $$f
|
||||
map X !$f
|
||||
|
||||
# dedicated keys for file opener actions
|
||||
# map o &mimeopen $f
|
||||
# map O $mimeopen --ask $f
|
||||
|
||||
# define a custom 'open' command
|
||||
# This command is called when current file is not a directory. You may want to
|
||||
# use either file extensions and/or mime types here. Below uses an editor for
|
||||
# text files and a file opener for the rest.
|
||||
cmd open ${{
|
||||
test -L $f && set f (readlink -f $f)
|
||||
switch (file --mime-type $f -b)
|
||||
case "text/*"
|
||||
$EDITOR $f
|
||||
case "video/*"
|
||||
mpv $f
|
||||
end
|
||||
}}
|
||||
|
||||
map o open
|
||||
|
||||
# extra open for alternative action on file, e.g. add to playlist in mpv, open
|
||||
# in new windwo
|
||||
|
||||
# cmd altOpen ${{
|
||||
# test -L $f && f=$(readlink -f $f)
|
||||
# case $(file --mime-type $f -b) in
|
||||
# text/*) $EDITOR $fx;;
|
||||
# video/*) mpv $fx;;
|
||||
# *) for f in $fx; do setsid $OPENER $f > /dev/null 2> /dev/null & done;;
|
||||
# esac
|
||||
# }}
|
||||
|
||||
# define a custom 'rename' command without prompt for overwrite
|
||||
# cmd rename %[ -e $1 ] && printf "file exists" || mv $f $1
|
||||
# map r push :rename<space>
|
||||
|
||||
# make sure trash folder exists
|
||||
# %mkdir -p ~/.trash
|
||||
|
||||
# move current file or selected files to trash folder
|
||||
# (also see 'man mv' for backup/overwrite options)
|
||||
cmd trash %set -f; mv $fx ~/.trash
|
||||
|
||||
# define a custom 'delete' command
|
||||
# cmd delete ${{
|
||||
# set -f
|
||||
# printf "$fx\n"
|
||||
# printf "delete?[y/n]"
|
||||
# read ans
|
||||
# [ "$ans" = "y" ] && rm -rf $fx
|
||||
# }}
|
||||
|
||||
# use '<delete>' key for either 'trash' or 'delete' command
|
||||
# map <delete> trash
|
||||
# map <delete> delete
|
||||
|
||||
# extract the current file with the right command
|
||||
# (xkcd link: https://xkcd.com/1168/)
|
||||
cmd extract ${{
|
||||
set -f
|
||||
case $f in
|
||||
*.tar.bz|*.tar.bz2|*.tbz|*.tbz2) tar xjvf $f;;
|
||||
*.tar.gz|*.tgz) tar xzvf $f;;
|
||||
*.tar.xz|*.txz) tar xJvf $f;;
|
||||
*.zip) unzip $f;;
|
||||
*.rar) unrar x $f;;
|
||||
*.7z) 7z x $f;;
|
||||
esac
|
||||
}}
|
||||
|
||||
# compress current file or selected files with tar and gunzip
|
||||
cmd tar ${{
|
||||
set -f
|
||||
mkdir $1
|
||||
cp -r $fx $1
|
||||
tar czf $1.tar.gz $1
|
||||
rm -rf $1
|
||||
}}
|
||||
|
||||
# compress current file or selected files with zip
|
||||
cmd zip ${{
|
||||
set -f
|
||||
mkdir $1
|
||||
cp -r $fx $1
|
||||
zip -r $1.zip $1
|
||||
rm -rf $1
|
||||
}}
|
||||
|
||||
# extract
|
||||
# zip
|
||||
# moveto fzf with bat
|
||||
|
||||
set previewer '~/.config/lf/scope'
|
||||
11
dotfiles/mkscaffold.sh
Normal file
11
dotfiles/mkscaffold.sh
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Create directories to prevent stow from symlinking the directories
|
||||
|
||||
# It's better to have the files symlinked rather than dirs in these cases so
|
||||
# that when more files/directories are added they don't get added to the repo,
|
||||
# e.g. .vim/plugins
|
||||
|
||||
mkdir ~/.vim
|
||||
mkdir ~/.local
|
||||
mkdir ~/.local/bin
|
||||
2
dotfiles/stowall.sh
Normal file
2
dotfiles/stowall.sh
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
stow */ -t ~
|
||||
2812
dotfiles/vim/.vim/autoload/plug.vim
Normal file
2812
dotfiles/vim/.vim/autoload/plug.vim
Normal file
File diff suppressed because it is too large
Load diff
1
dotfiles/vim/.vim/blog/Dotfiles.md
Normal file
1
dotfiles/vim/.vim/blog/Dotfiles.md
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Stow
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
# Drafts
|
||||
- Dotfiles
|
||||
- [Dotfiles](Dotfiles)
|
||||
- [Tmux workflow](Tmux_workflow)
|
||||
- Vim
|
||||
- Choosing programs over plugins
|
||||
|
|
@ -1,23 +1,50 @@
|
|||
automake
|
||||
bspwm
|
||||
fzf
|
||||
gcc
|
||||
git
|
||||
glib-devel
|
||||
gnutls-devel
|
||||
gtk-doc
|
||||
htop
|
||||
make
|
||||
pkg-config
|
||||
# sbopkg
|
||||
# Generate queuefile with `sqg -p <this_list>`
|
||||
autojump
|
||||
bspwm?
|
||||
bat
|
||||
calcurse
|
||||
dtrx
|
||||
fd
|
||||
feh
|
||||
fish
|
||||
i3lock-fancy
|
||||
lemonbar-xft
|
||||
lutris
|
||||
mpd
|
||||
mpv
|
||||
ncdu
|
||||
ncmpcpp
|
||||
neovim
|
||||
neovim-remote
|
||||
newsboat
|
||||
nim
|
||||
noto-emoji
|
||||
picom
|
||||
pipewire-native-jack
|
||||
qutebrowser
|
||||
ranger
|
||||
rxvt-unicode
|
||||
ripgrep
|
||||
rtorrent
|
||||
rustup
|
||||
sbcl
|
||||
sc-im
|
||||
screenfetch
|
||||
scrot
|
||||
stow
|
||||
sxhkd
|
||||
tig
|
||||
tmux
|
||||
tree
|
||||
twm
|
||||
vim
|
||||
xorg
|
||||
xterm
|
||||
sxiv
|
||||
task
|
||||
tree-sitter
|
||||
unicode-character-database
|
||||
xclip
|
||||
xss-lock
|
||||
youtube-dl
|
||||
zathura-djvu
|
||||
|
||||
|
||||
# Other things that need to be installed manually
|
||||
st
|
||||
dmenu
|
||||
lf
|
||||
fzf (sbopkg version still not good?)
|
||||
|
||||
|
|
|
|||
50
installed.txt~
Normal file
50
installed.txt~
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
# sbopkg
|
||||
# Generate queuefile with `sqg -p <this_list>`
|
||||
autojump
|
||||
bspwm?
|
||||
bat
|
||||
calcurse
|
||||
dtrx
|
||||
fd
|
||||
feh
|
||||
fish
|
||||
i3lock-fancy
|
||||
lemonbar-xft
|
||||
lutris
|
||||
mpd
|
||||
mpv
|
||||
ncdu
|
||||
ncmpcpp
|
||||
neovim
|
||||
neovim-remote
|
||||
newsboat
|
||||
nim
|
||||
noto-emoji
|
||||
picom
|
||||
pipewire-native-jack
|
||||
qutebrowser
|
||||
ranger
|
||||
ripgrep
|
||||
rtorrent
|
||||
rustup
|
||||
sbcl
|
||||
screenfetch
|
||||
scrot
|
||||
stow
|
||||
sxhkd
|
||||
sxiv
|
||||
task
|
||||
tree-sitter
|
||||
unicode-character-database
|
||||
xclip
|
||||
xss-lock
|
||||
youtube-dl
|
||||
zathura-djvu
|
||||
|
||||
|
||||
# Other things that need to be installed manually
|
||||
st
|
||||
dmenu
|
||||
lf
|
||||
fzf (sbopkg version still not good?)
|
||||
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
board:
|
||||
id: 24
|
||||
name: Foresight Combined Sprint Board
|
||||
type: scrum
|
||||
epic:
|
||||
name: customfield_10011
|
||||
link: customfield_10014
|
||||
installation: Cloud
|
||||
issue:
|
||||
types:
|
||||
- id: "10000"
|
||||
name: Epic
|
||||
handle: Epic
|
||||
subtask: false
|
||||
- id: "10007"
|
||||
name: Story
|
||||
handle: Story
|
||||
subtask: false
|
||||
- id: "10016"
|
||||
name: Task
|
||||
handle: Task
|
||||
subtask: false
|
||||
- id: "10017"
|
||||
name: Sub-task
|
||||
handle: Sub-task
|
||||
subtask: true
|
||||
- id: "10010"
|
||||
name: Bug
|
||||
handle: Bug
|
||||
subtask: false
|
||||
- id: "10026"
|
||||
name: Information
|
||||
handle: Information
|
||||
subtask: false
|
||||
- id: "10027"
|
||||
name: Feature Request
|
||||
handle: Feature Request
|
||||
subtask: false
|
||||
login: ian@fs.tech
|
||||
project:
|
||||
key: RWA
|
||||
type: classic
|
||||
server: https://everblue.atlassian.net
|
||||
|
|
@ -1 +0,0 @@
|
|||
Subproject commit ce8e1e540367ea83cc3e01eec7b2a11783b3f9e1
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
set EDITOR vim
|
||||
set PAGER bat
|
||||
set BROWSER firefox
|
||||
|
||||
if status --is-interactive
|
||||
set BASE16_SHELL "$HOME/.config/base16-shell/"
|
||||
source "$BASE16_SHELL/profile_helper.fish"
|
||||
source "$HOME/.config/fish/functions/autojump.fish"
|
||||
end
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
jorgebucaran/fisher
|
||||
jorgebucaran/nvm.fish
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
# This file contains fish universal variable definitions.
|
||||
# VERSION: 3.0
|
||||
SETUVAR --export DEV_RWA_DB_PASS:tM54ynHFY2TsQeBW
|
||||
SETUVAR --export DEV_RWA_MOODLE_DB_PASS:ZfILLMQKG1XwmGi0
|
||||
SETUVAR --export FLAV01:\x23ebdbb2
|
||||
SETUVAR --export FLAV02:\x23d5c4a1
|
||||
SETUVAR --export FLAV03:\x23bdae93
|
||||
SETUVAR --export FLAV04:\x23665c54
|
||||
SETUVAR --export FLAV05:\x23504945
|
||||
SETUVAR --export FLAV06:\x233c3836
|
||||
SETUVAR --export FLAV07:\x23282828
|
||||
SETUVAR --export FLAV08:\x239d0006
|
||||
SETUVAR --export FLAV09:\x23af3a03
|
||||
SETUVAR --export FLAV10:\x23f9f5d7
|
||||
SETUVAR --export FLAV11:\x23f9f5d7
|
||||
SETUVAR --export FLAV12:\x239d0006
|
||||
SETUVAR --export FLAV13:\x23b57614
|
||||
SETUVAR --export FLAV14:\x2379740e
|
||||
SETUVAR --export FLAV15:\x23427b58
|
||||
SETUVAR --export FLAV16:\x23076678
|
||||
SETUVAR --export JIRA_API_TOKEN:GeyxpLU08UNJaFgMX5qZ5A78
|
||||
SETUVAR __fish_initialized:3400
|
||||
SETUVAR _fish_abbr_mux:tmuxinator
|
||||
SETUVAR _fisher_jorgebucaran_2F_fisher_files:/Users/iankeane/\x2econfig/fish/functions/fisher\x2efish\x1e/Users/iankeane/\x2econfig/fish/completions/fisher\x2efish
|
||||
SETUVAR _fisher_jorgebucaran_2F_nvm_2E_fish_files:/Users/iankeane/\x2econfig/fish/functions/_nvm_index_update\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/_nvm_list\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/_nvm_version_activate\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/_nvm_version_deactivate\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/nvm\x2efish\x1e/Users/iankeane/\x2econfig/fish/conf\x2ed/nvm\x2efish\x1e/Users/iankeane/\x2econfig/fish/completions/nvm\x2efish
|
||||
SETUVAR _fisher_plugins:jorgebucaran/fisher\x1ejorgebucaran/nvm\x2efish
|
||||
SETUVAR fish_color_autosuggestion:555\x1ebrblack
|
||||
SETUVAR fish_color_cancel:\x2dr
|
||||
SETUVAR fish_color_command:005fd7
|
||||
SETUVAR fish_color_comment:990000
|
||||
SETUVAR fish_color_cwd:green
|
||||
SETUVAR fish_color_cwd_root:red
|
||||
SETUVAR fish_color_end:009900
|
||||
SETUVAR fish_color_error:ff0000
|
||||
SETUVAR fish_color_escape:00a6b2
|
||||
SETUVAR fish_color_history_current:\x2d\x2dbold
|
||||
SETUVAR fish_color_host:normal
|
||||
SETUVAR fish_color_host_remote:yellow
|
||||
SETUVAR fish_color_normal:normal
|
||||
SETUVAR fish_color_operator:00a6b2
|
||||
SETUVAR fish_color_param:00afff
|
||||
SETUVAR fish_color_quote:999900
|
||||
SETUVAR fish_color_redirection:00afff
|
||||
SETUVAR fish_color_search_match:bryellow\x1e\x2d\x2dbackground\x3dbrblack
|
||||
SETUVAR fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrblack
|
||||
SETUVAR fish_color_status:red
|
||||
SETUVAR fish_color_user:brgreen
|
||||
SETUVAR fish_color_valid_path:\x2d\x2dunderline
|
||||
SETUVAR fish_key_bindings:fish_vi_key_bindings
|
||||
SETUVAR fish_pager_color_completion:\x1d
|
||||
SETUVAR fish_pager_color_description:B3A06D\x1eyellow
|
||||
SETUVAR fish_pager_color_prefix:white\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
|
||||
SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
|
||||
SETUVAR fish_pager_color_selected_background:\x2dr
|
||||
SETUVAR fish_user_paths:/home/green/\x2elocal/bin\x1e/home/green/bin\x1e/home/linuxbrew/\x2elinuxbrew/bin\x1e/home/green/\x2ecargo/bin\x1e/usr/games\x1e/home/green/\x2econfig/fzf/bin
|
||||
SETUVAR nvm_data:/Users/iankeane/\x2elocal/share/nvm
|
||||
SETUVAR nvm_mirror:https\x3a//nodejs\x2eorg/dist
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,988 +0,0 @@
|
|||
2021-06-01 14:29:45,080 (11863/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-06-01 14:29:45,081 (11863/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-06-01 14:29:45,087 (11863/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 582, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 569, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not connect to server: No such file or directory\n\tIs the server running locally and accepting\n\tconnections on Unix domain socket "/tmp/.s.PGSQL.5432"?\n\n'
|
||||
2021-06-01 14:30:35,891 (11870/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-06-01 14:30:35,891 (11870/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-07-21 13:13:33,434 (66147/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-07-21 13:13:33,435 (66147/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-07-21 13:13:41,573 (66147/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 569, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 578, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: FATAL: password authentication failed for user "admin"\n\n'
|
||||
2021-07-21 13:14:27,192 (66429/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-07-21 13:14:27,193 (66429/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-07-21 13:14:34,805 (66429/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 569, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 578, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: FATAL: password authentication failed for user "admin"\n\n'
|
||||
2021-07-21 13:14:50,710 (66531/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-07-21 13:14:50,710 (66531/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-07-21 13:15:52,503 (66531/MainThread) pgcli.main ERROR - sql: '\\e vim', error: RuntimeError('Error reading file: vim.')
|
||||
2021-07-21 13:15:52,505 (66531/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 743, in run_cli\n text = self.handle_editor_command(text)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 630, in handle_editor_command\n raise RuntimeError(message)\nRuntimeError: Error reading file: vim.\n'
|
||||
2021-07-21 13:20:02,145 (66531/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_requirementfield \\o', error: SyntaxError('syntax error at or near "\\"\nLINE 1: select * from certifications_requirementfield \\o\n ^\n')
|
||||
2021-07-21 13:20:02,146 (66531/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "\\"\nLINE 1: select * from certifications_requirementfield \\o\n ^\n\n'
|
||||
2021-07-21 13:20:08,431 (66531/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_requirementfield \\ef', error: SyntaxError('syntax error at or near "\\"\nLINE 1: select * from certifications_requirementfield \\ef\n ^\n')
|
||||
2021-07-21 13:20:08,432 (66531/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "\\"\nLINE 1: select * from certifications_requirementfield \\ef\n ^\n\n'
|
||||
2021-07-21 15:24:34,060 (66531/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certificationtype', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-07-21 15:24:34,062 (66531/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-07-21 15:24:34,062 (66531/MainThread) pgcli.main ERROR - sql: 'select * from certifications_certificationtype', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-07-21 15:24:34,063 (66531/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 654, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 901, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-07-26 10:25:42,371 (98070/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-07-26 10:25:42,372 (98070/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-07-27 15:16:57,936 (98070/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification', error: UndefinedTable('relation "certification" does not exist\nLINE 1: select * from certification\n ^\n')
|
||||
2021-07-27 15:16:57,940 (98070/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certification" does not exist\nLINE 1: select * from certification\n ^\n\n'
|
||||
2021-07-27 15:30:45,140 (98070/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_requirementfieldentry where user=12', error: UndefinedFunction('operator does not exist: name = integer\nLINE 1: ...ct * from certifications_requirementfieldentry where user=12\n ^\nHINT: No operator matches the given name and argument types. You might need to add explicit type casts.\n')
|
||||
2021-07-27 15:30:45,154 (98070/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedFunction: operator does not exist: name = integer\nLINE 1: ...ct * from certifications_requirementfieldentry where user=12\n ^\nHINT: No operator matches the given name and argument types. You might need to add explicit type casts.\n\n'
|
||||
2021-07-30 08:35:35,160 (73064/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-07-30 08:35:35,166 (73064/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-07-30 08:48:11,753 (73064/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certificationfield', error: UndefinedTable('relation "certifications_certificationfield" does not exist\nLINE 1: select * from certifications_certificationfield\n ^\n')
|
||||
2021-07-30 08:48:11,785 (73064/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certifications_certificationfield" does not exist\nLINE 1: select * from certifications_certificationfield\n ^\n\n'
|
||||
2021-08-02 16:31:40,138 (24095/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-08-02 16:31:40,139 (24095/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-08-04 08:41:27,749 (24095/MainThread) pgcli.pgexecute ERROR - sql: 'BEGIN', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-08-04 08:41:27,753 (24095/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-08-04 08:41:27,753 (24095/MainThread) pgcli.main ERROR - sql: 'BEGIN;\nSELECT setval(pg_get_serial_sequence(\'"certifications_notice"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_notice";\nSELECT setval(pg_get_serial_sequence(\'"certifications_noticelog"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_noticelog";\nSELECT setval(pg_get_serial_sequence(\'"certifications_noticedefaultlogrecord"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_noticedefaultlogrecord";\nSELECT setval(pg_get_serial_sequence(\'"certifications_requirementfield_statuses"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfield_statuses";\nSELECT setval(pg_get_serial_sequence(\'"certifications_requirementfield"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfield";\nSELECT setval(pg_get_serial_sequence(\'"certifications_requirementfieldentry"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfieldentry";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationtype"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationtype";\nSELECT setval(pg_get_serial_sequence(\'"certifications_accountnumber"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_accountnumber";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationrep"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationrep";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certification"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certification";\nSELECT setval(pg_get_serial_sequence(\'"certifications_statusreport"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusreport";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationapp_payment_methods"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp_payment_methods";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationapp"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationappfield"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationappfield";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationfieldentry"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationfieldentry";\nSELECT setval(pg_get_serial_sequence(\'"certifications_statusfield"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfield";\nSELECT setval(pg_get_serial_sequence(\'"certifications_statusfieldentry"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfieldentry";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationimport"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationimport";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationimportdata"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationimportdata";\nCOMMIT;', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-08-04 08:41:27,755 (24095/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 654, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 901, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-08-04 08:41:28,182 (24095/MainThread) pgcli.pgexecute ERROR - sql: 'SELECT setval(pg_get_serial_sequence(\'"certifications_statusreport"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusreport"', error: UndefinedTable('relation "certifications_statusreport" does not exist\nLINE 1: ...alesce(max("id"), 1), max("id") IS NOT null) FROM "certifica...\n ^\n')
|
||||
2021-08-04 08:41:28,182 (24095/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 654, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 901, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certifications_statusreport" does not exist\nLINE 1: ...alesce(max("id"), 1), max("id") IS NOT null) FROM "certifica...\n ^\n\n'
|
||||
2021-08-04 08:41:57,884 (24095/MainThread) pgcli.pgexecute ERROR - sql: 'select name from certifications_certificationtype', error: InFailedSqlTransaction('current transaction is aborted, commands ignored until end of transaction block\n')
|
||||
2021-08-04 08:41:57,885 (24095/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block\n\n'
|
||||
2021-08-04 08:42:05,470 (24095/MainThread) pgcli.pgexecute ERROR - sql: 'select name from certifications_certificationtype', error: InFailedSqlTransaction('current transaction is aborted, commands ignored until end of transaction block\n')
|
||||
2021-08-04 08:42:05,471 (24095/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block\n\n'
|
||||
2021-08-04 08:42:14,434 (24095/MainThread) pgcli.pgexecute ERROR - sql: 'select name from certifications_certificationtype', error: InFailedSqlTransaction('current transaction is aborted, commands ignored until end of transaction block\n')
|
||||
2021-08-04 08:42:14,434 (24095/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block\n\n'
|
||||
2021-08-04 08:42:25,405 (26912/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-08-04 08:42:25,406 (26912/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-08-05 14:34:59,861 (2616/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-08-05 14:34:59,862 (2616/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-08-06 11:50:48,932 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'SELECT setval(pg_get_serial_sequence(\'"certifications_statusreport"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusreport"', error: UndefinedTable('relation "certifications_statusreport" does not exist\nLINE 1: ...alesce(max("id"), 1), max("id") IS NOT null) FROM "certifica...\n ^\n')
|
||||
2021-08-06 11:50:48,934 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certifications_statusreport" does not exist\nLINE 1: ...alesce(max("id"), 1), max("id") IS NOT null) FROM "certifica...\n ^\n\n'
|
||||
2021-08-06 11:51:50,817 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'SELECT setval(pg_get_serial_sequence(\'"certifications_certificationapp"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp"', error: InFailedSqlTransaction('current transaction is aborted, commands ignored until end of transaction block\n')
|
||||
2021-08-06 11:51:50,818 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block\n\n'
|
||||
2021-08-06 11:51:56,737 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'SELECT setval(pg_get_serial_sequence(\'"certifications_certificationapp"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp"', error: InFailedSqlTransaction('current transaction is aborted, commands ignored until end of transaction block\n')
|
||||
2021-08-06 11:51:56,738 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block\n\n'
|
||||
2021-08-06 11:52:09,988 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'SELECT setval(pg_get_serial_sequence(\'"certifications_certificationapp"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp"', error: InFailedSqlTransaction('current transaction is aborted, commands ignored until end of transaction block\n')
|
||||
2021-08-06 11:52:09,988 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block\n\n'
|
||||
2021-08-06 11:52:26,157 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'SELECT setval(pg_get_serial_sequence(\'"certifications_certificationapp"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp"', error: InFailedSqlTransaction('current transaction is aborted, commands ignored until end of transaction block\n')
|
||||
2021-08-06 11:52:26,157 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block\n\n'
|
||||
2021-08-09 13:11:11,093 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certificationapp /e', error: SyntaxError('syntax error at or near "/"\nLINE 1: select * from certifications_certificationapp /e\n ^\n')
|
||||
2021-08-09 13:11:11,094 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "/"\nLINE 1: select * from certifications_certificationapp /e\n ^\n\n'
|
||||
2021-08-09 15:31:32,177 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select columns from information_schema where table="certifications_certificationapp"', error: SyntaxError('syntax error at or near "table"\nLINE 1: select columns from information_schema where table="certific...\n ^\n')
|
||||
2021-08-09 15:31:32,177 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "table"\nLINE 1: select columns from information_schema where table="certific...\n ^\n\n'
|
||||
2021-08-09 15:31:44,085 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select columns from information_schema where table_name="certifications_certificationapp"', error: UndefinedTable('relation "information_schema" does not exist\nLINE 1: select columns from information_schema where table_name="cer...\n ^\n')
|
||||
2021-08-09 15:31:44,085 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "information_schema" does not exist\nLINE 1: select columns from information_schema where table_name="cer...\n ^\n\n'
|
||||
2021-08-09 15:31:48,191 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select * from information_schema', error: UndefinedTable('relation "information_schema" does not exist\nLINE 1: select * from information_schema\n ^\n')
|
||||
2021-08-09 15:31:48,191 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "information_schema" does not exist\nLINE 1: select * from information_schema\n ^\n\n'
|
||||
2021-08-09 15:32:10,957 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select columns from information_schema.columns where table_name="certifications_certificationapp"', error: UndefinedColumn('column "certifications_certificationapp" does not exist\nLINE 1: ... from information_schema.columns where table_name="certifica...\n ^\n')
|
||||
2021-08-09 15:32:10,957 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedColumn: column "certifications_certificationapp" does not exist\nLINE 1: ... from information_schema.columns where table_name="certifica...\n ^\n\n'
|
||||
2021-08-09 15:32:50,932 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'clear', error: SyntaxError('syntax error at or near "clear"\nLINE 1: clear\n ^\n')
|
||||
2021-08-09 15:32:50,932 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "clear"\nLINE 1: clear\n ^\n\n'
|
||||
2021-08-09 15:32:53,807 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'cls', error: SyntaxError('syntax error at or near "cls"\nLINE 1: cls\n ^\n')
|
||||
2021-08-09 15:32:53,807 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "cls"\nLINE 1: cls\n ^\n\n'
|
||||
2021-08-11 11:28:29,198 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certificationfield', error: UndefinedTable('relation "certifications_certificationfield" does not exist\nLINE 1: select * from certifications_certificationfield\n ^\n')
|
||||
2021-08-11 11:28:29,201 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certifications_certificationfield" does not exist\nLINE 1: select * from certifications_certificationfield\n ^\n\n'
|
||||
2021-08-11 11:34:55,946 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certificationappfieldentry', error: UndefinedTable('relation "certifications_certificationappfieldentry" does not exist\nLINE 1: select * from certifications_certificationappfieldentry\n ^\n')
|
||||
2021-08-11 11:34:55,947 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certifications_certificationappfieldentry" does not exist\nLINE 1: select * from certifications_certificationappfieldentry\n ^\n\n'
|
||||
2021-08-11 11:35:32,782 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certificationappfieldentry', error: UndefinedTable('relation "certifications_certificationappfieldentry" does not exist\nLINE 1: select * from certifications_certificationappfieldentry\n ^\n')
|
||||
2021-08-11 11:35:32,782 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certifications_certificationappfieldentry" does not exist\nLINE 1: select * from certifications_certificationappfieldentry\n ^\n\n'
|
||||
2021-08-11 17:14:21,469 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certificationfield', error: UndefinedTable('relation "certifications_certificationfield" does not exist\nLINE 1: select * from certifications_certificationfield\n ^\n')
|
||||
2021-08-11 17:14:21,470 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certifications_certificationfield" does not exist\nLINE 1: select * from certifications_certificationfield\n ^\n\n'
|
||||
2021-08-16 10:21:21,440 (46655/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-08-16 10:21:21,441 (46655/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-08-16 10:21:28,387 (46655/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2021-08-16 10:21:28,388 (46655/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2021-08-24 17:07:31,741 (11536/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-08-24 17:07:31,741 (11536/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-01 14:24:47,275 (3189/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-01 14:24:47,275 (3189/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-01 14:44:35,697 (4714/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-01 14:44:35,697 (4714/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-01 15:01:29,712 (5514/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-01 15:01:29,713 (5514/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-01 15:24:09,878 (6312/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-01 15:24:09,879 (6312/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-04 08:37:07,363 (18392/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-04 08:37:07,364 (18392/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-04 08:57:44,613 (19208/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-04 08:57:44,613 (19208/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-04 09:41:14,659 (19208/MainThread) pgcli.pgexecute ERROR - sql: 'cert', error: SyntaxError('syntax error at or near "cert"\nLINE 1: cert\n ^\n')
|
||||
2021-10-04 09:41:14,662 (19208/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "cert"\nLINE 1: cert\n ^\n\n'
|
||||
2021-10-04 09:43:12,075 (19722/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-04 09:43:12,076 (19722/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-04 09:52:43,079 (19722/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_castleid', error: UndefinedTable('relation "certification_extension_castleid" does not exist\nLINE 1: select * from certification_extension_castleid\n ^\n')
|
||||
2021-10-04 09:52:43,082 (19722/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certification_extension_castleid" does not exist\nLINE 1: select * from certification_extension_castleid\n ^\n\n'
|
||||
2021-10-04 09:52:49,024 (19845/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-04 09:52:49,025 (19845/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-04 09:53:10,953 (19845/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_castleid', error: UndefinedTable('relation "certification_extension_castleid" does not exist\nLINE 1: select * from certification_extension_castleid\n ^\n')
|
||||
2021-10-04 09:53:10,954 (19845/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certification_extension_castleid" does not exist\nLINE 1: select * from certification_extension_castleid\n ^\n\n'
|
||||
2021-10-04 09:53:52,299 (19853/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-04 09:53:52,299 (19853/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-04 10:08:27,484 (20356/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-04 10:08:27,485 (20356/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-04 13:06:46,201 (27966/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-04 13:06:46,201 (27966/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-04 13:38:13,483 (27966/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantron', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-10-04 13:38:13,486 (27966/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-10-04 13:38:13,486 (27966/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantron', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-10-04 13:38:13,487 (27966/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 654, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 901, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-10-05 14:46:00,964 (52650/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-05 14:46:00,965 (52650/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-05 16:05:19,322 (60360/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-05 16:05:19,323 (60360/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-05 16:06:17,972 (60376/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-05 16:06:17,972 (60376/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-05 16:08:00,858 (60376/MainThread) pgcli.pgexecute ERROR - sql: 'drop database postgres', error: ObjectInUse('cannot drop the currently open database\n')
|
||||
2021-10-05 16:08:00,861 (60376/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.ObjectInUse: cannot drop the currently open database\n\n'
|
||||
2021-10-05 16:08:11,931 (60376/MainThread) pgcli.pgexecute ERROR - sql: 'close database postgres', error: SyntaxError('syntax error at or near "postgres"\nLINE 1: close database postgres\n ^\n')
|
||||
2021-10-05 16:08:11,931 (60376/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "postgres"\nLINE 1: close database postgres\n ^\n\n'
|
||||
2021-10-05 16:08:32,383 (60382/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-05 16:08:32,383 (60382/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-05 16:08:32,389 (60382/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 582, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 569, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not connect to server: No such file or directory\n\tIs the server running locally and accepting\n\tconnections on Unix domain socket "/tmp/.s.PGSQL.5432"?\n\n'
|
||||
2021-10-05 16:08:41,816 (60385/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-05 16:08:41,817 (60385/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-05 16:08:46,277 (60385/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 569, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 578, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: FATAL: password authentication failed for user "iankeane"\n\n'
|
||||
2021-10-05 16:08:51,525 (60389/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-05 16:08:51,525 (60389/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-05 16:09:02,240 (60389/MainThread) pgcli.pgexecute ERROR - sql: 'drop database postgres', error: ObjectInUse('cannot drop the currently open database\n')
|
||||
2021-10-05 16:09:02,241 (60389/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.ObjectInUse: cannot drop the currently open database\n\n'
|
||||
2021-10-05 16:27:24,151 (61960/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-05 16:27:24,152 (61960/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-05 16:39:53,464 (65484/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-05 16:39:53,465 (65484/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-06 10:34:46,241 (1993/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-06 10:34:46,242 (1993/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-06 11:38:53,189 (4686/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-06 11:38:53,189 (4686/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-06 11:39:01,791 (4686/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2021-10-06 11:39:01,792 (4686/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2021-10-06 11:58:07,276 (4686/MainThread) pgcli.pgexecute ERROR - sql: 'select * from examlevel', error: UndefinedTable('relation "examlevel" does not exist\nLINE 1: select * from examlevel\n ^\n')
|
||||
2021-10-06 11:58:07,277 (4686/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "examlevel" does not exist\nLINE 1: select * from examlevel\n ^\n\n'
|
||||
2021-10-06 14:58:22,178 (4686/MainThread) pgcli.pgexecute ERROR - sql: 'select * from examlevel', error: UndefinedTable('relation "examlevel" does not exist\nLINE 1: select * from examlevel\n ^\n')
|
||||
2021-10-06 14:58:22,178 (4686/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "examlevel" does not exist\nLINE 1: select * from examlevel\n ^\n\n'
|
||||
2021-10-06 15:06:06,941 (4686/MainThread) pgcli.pgexecute ERROR - sql: 'clear', error: SyntaxError('syntax error at or near "clear"\nLINE 1: clear\n ^\n')
|
||||
2021-10-06 15:06:06,941 (4686/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "clear"\nLINE 1: clear\n ^\n\n'
|
||||
2021-10-06 15:06:08,399 (4686/MainThread) pgcli.pgexecute ERROR - sql: 'cls', error: SyntaxError('syntax error at or near "cls"\nLINE 1: cls\n ^\n')
|
||||
2021-10-06 15:06:08,399 (4686/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "cls"\nLINE 1: cls\n ^\n\n'
|
||||
2021-10-06 15:06:14,273 (15849/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-06 15:06:14,274 (15849/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-07 09:19:08,525 (26942/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-07 09:19:08,526 (26942/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-07 14:11:00,715 (26942/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronexamlevel', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-10-07 14:11:00,718 (26942/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-10-07 14:11:00,718 (26942/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantronexamlevel', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-10-07 14:11:00,719 (26942/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 654, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 901, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-10-07 14:41:19,646 (26942/MainThread) pgcli.pgexecute ERROR - sql: 'truncate table certification_extension_scantronexam', error: FeatureNotSupported('cannot truncate a table referenced in a foreign key constraint\nDETAIL: Table "certification_extension_scantronexamanswer" references "certification_extension_scantronexam".\nHINT: Truncate table "certification_extension_scantronexamanswer" at the same time, or use TRUNCATE ... CASCADE.\n')
|
||||
2021-10-07 14:41:19,647 (26942/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.FeatureNotSupported: cannot truncate a table referenced in a foreign key constraint\nDETAIL: Table "certification_extension_scantronexamanswer" references "certification_extension_scantronexam".\nHINT: Truncate table "certification_extension_scantronexamanswer" at the same time, or use TRUNCATE ... CASCADE.\n\n'
|
||||
2021-10-07 14:41:45,840 (26942/MainThread) pgcli.pgexecute ERROR - sql: 'truncate table certification_extension_scantronexam', error: FeatureNotSupported('cannot truncate a table referenced in a foreign key constraint\nDETAIL: Table "certification_extension_scantronexamanswer" references "certification_extension_scantronexam".\nHINT: Truncate table "certification_extension_scantronexamanswer" at the same time, or use TRUNCATE ... CASCADE.\n')
|
||||
2021-10-07 14:41:45,841 (26942/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.FeatureNotSupported: cannot truncate a table referenced in a foreign key constraint\nDETAIL: Table "certification_extension_scantronexamanswer" references "certification_extension_scantronexam".\nHINT: Truncate table "certification_extension_scantronexamanswer" at the same time, or use TRUNCATE ... CASCADE.\n\n'
|
||||
2021-10-07 14:48:48,207 (75137/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-07 14:48:48,208 (75137/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-12 13:52:05,780 (2325/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-12 13:52:05,781 (2325/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-14 11:36:17,202 (39098/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-14 11:36:17,203 (39098/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-14 11:36:26,508 (39098/MainThread) pgcli.pgexecute ERROR - sql: 'select * from scan', error: UndefinedTable('relation "scan" does not exist\nLINE 1: select * from scan\n ^\n')
|
||||
2021-10-14 11:36:26,509 (39098/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "scan" does not exist\nLINE 1: select * from scan\n ^\n\n'
|
||||
2021-10-14 11:37:32,187 (39109/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-14 11:37:32,188 (39109/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-14 11:37:36,158 (39109/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2021-10-14 11:37:36,158 (39109/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2021-10-14 11:59:26,833 (39993/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-14 11:59:26,834 (39993/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-14 12:02:54,495 (39993/MainThread) pgcli.pgexecute ERROR - sql: 'select * from accountnumber', error: UndefinedTable('relation "accountnumber" does not exist\nLINE 1: select * from accountnumber\n ^\n')
|
||||
2021-10-14 12:02:54,496 (39993/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "accountnumber" does not exist\nLINE 1: select * from accountnumber\n ^\n\n'
|
||||
2021-10-14 12:03:43,469 (39993/MainThread) pgcli.pgexecute ERROR - sql: 'select * from statusreport', error: UndefinedTable('relation "statusreport" does not exist\nLINE 1: select * from statusreport\n ^\n')
|
||||
2021-10-14 12:03:43,469 (39993/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "statusreport" does not exist\nLINE 1: select * from statusreport\n ^\n\n'
|
||||
2021-10-14 12:10:31,682 (39993/MainThread) pgcli.pgexecute ERROR - sql: 'select * from freepasses', error: UndefinedTable('relation "freepasses" does not exist\nLINE 1: select * from freepasses\n ^\n')
|
||||
2021-10-14 12:10:31,683 (39993/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "freepasses" does not exist\nLINE 1: select * from freepasses\n ^\n\n'
|
||||
2021-10-14 13:06:41,698 (39993/MainThread) pgcli.pgexecute ERROR - sql: 'select type(payment_id) from payments_payment', error: UndefinedColumn('column "payment_id" does not exist\nLINE 1: select type(payment_id) from payments_payment\n ^\n')
|
||||
2021-10-14 13:06:41,699 (39993/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "payment_id" does not exist\nLINE 1: select type(payment_id) from payments_payment\n ^\n\n'
|
||||
2021-10-14 13:08:09,173 (39993/MainThread) pgcli.pgexecute ERROR - sql: "select data_type from information_schema.columns where table_name = 'payments_payment' and column_name=", error: SyntaxError("syntax error at end of input\nLINE 1: ...lumns where table_name = 'payments_payment' and column_name=\n ^\n")
|
||||
2021-10-14 13:08:09,173 (39993/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at end of input\nLINE 1: ...lumns where table_name = \'payments_payment\' and column_name=\n ^\n\n'
|
||||
2021-10-14 13:08:32,557 (39993/MainThread) pgcli.pgexecute ERROR - sql: "select data_type from information_schema.columns where table_name = 'payments_payment' and column_name=guid", error: UndefinedColumn('column "guid" does not exist\nLINE 1: ...s where table_name = \'payments_payment\' and column_name=guid\n ^\n')
|
||||
2021-10-14 13:08:32,558 (39993/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "guid" does not exist\nLINE 1: ...s where table_name = \'payments_payment\' and column_name=guid\n ^\n\n'
|
||||
2021-10-15 14:16:52,296 (56308/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-15 14:16:52,297 (56308/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-15 14:42:36,172 (58093/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-15 14:42:36,172 (58093/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-15 14:42:42,023 (58093/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2021-10-15 14:42:42,025 (58093/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2021-10-15 15:41:34,626 (62434/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-15 15:41:34,626 (62434/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-18 08:06:58,213 (26342/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-18 08:06:58,214 (26342/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-18 08:07:14,584 (26342/MainThread) pgcli.pgexecute ERROR - sql: 'select * from billable', error: UndefinedTable('relation "billable" does not exist\nLINE 1: select * from billable\n ^\n')
|
||||
2021-10-18 08:07:14,586 (26342/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "billable" does not exist\nLINE 1: select * from billable\n ^\n\n'
|
||||
2021-10-18 08:28:13,795 (26342/MainThread) pgcli.pgexecute ERROR - sql: 'vim', error: SyntaxError('syntax error at or near "vim"\nLINE 1: vim\n ^\n')
|
||||
2021-10-18 08:28:13,796 (26342/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "vim"\nLINE 1: vim\n ^\n\n'
|
||||
2021-10-18 08:34:58,428 (28280/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-18 08:34:58,428 (28280/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-18 09:59:17,505 (29264/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-18 09:59:17,505 (29264/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-21 14:18:27,042 (16039/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-21 14:18:27,043 (16039/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-21 14:18:35,080 (16079/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-21 14:18:35,081 (16079/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-10-22 10:46:43,063 (16039/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certification', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-10-22 10:46:43,067 (16039/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-10-22 10:46:43,068 (16039/MainThread) pgcli.main ERROR - sql: 'select * from certifications_certification', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-10-22 10:46:43,070 (16039/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-10-22 10:47:26,004 (16039/MainThread) pgcli.pgexecute ERROR - sql: 'select id, create_date from certifications_certification', error: UndefinedColumn('column "create_date" does not exist\nLINE 1: select id, create_date from certifications_certification\n ^\nHINT: Perhaps you meant to reference the column "certifications_certification.create_dt".\n')
|
||||
2021-10-22 10:47:26,004 (16039/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "create_date" does not exist\nLINE 1: select id, create_date from certifications_certification\n ^\nHINT: Perhaps you meant to reference the column "certifications_certification.create_dt".\n\n'
|
||||
2021-10-25 11:23:25,756 (16039/MainThread) pgcli.pgexecute ERROR - sql: 'select * from payments_paymentmethod', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-10-25 11:23:25,757 (16039/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-10-25 11:23:25,757 (16039/MainThread) pgcli.main ERROR - sql: 'select * from payments_paymentmethod', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-10-25 11:23:25,757 (16039/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-10-25 14:53:06,796 (16039/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-10-25 14:53:06,799 (16039/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-10-25 14:53:06,804 (16039/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_billableevent', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-10-25 14:53:06,805 (16039/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-10-25 15:06:01,486 (16039/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-10-25 15:06:01,487 (16039/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-10-25 15:06:01,488 (16039/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_billableevent', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-10-25 15:06:01,488 (16039/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-10-25 15:33:04,452 (16039/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: AdminShutdown('terminating connection due to unexpected postmaster exit\n')
|
||||
2021-10-25 15:33:04,454 (16039/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.AdminShutdown: terminating connection due to unexpected postmaster exit\n\n'
|
||||
2021-10-25 15:33:04,454 (16039/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_billableevent', error: AdminShutdown('terminating connection due to unexpected postmaster exit\n')
|
||||
2021-10-25 15:33:04,454 (16039/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.AdminShutdown: terminating connection due to unexpected postmaster exit\n\n'
|
||||
2021-10-27 14:16:39,580 (41089/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-10-27 14:16:39,581 (41089/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-04 09:04:13,924 (56826/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-04 09:04:13,925 (56826/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-04 09:08:40,013 (57918/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-04 09:08:40,014 (57918/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-04 09:43:59,321 (68587/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-04 09:43:59,321 (68587/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-05 08:15:41,679 (17711/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-05 08:15:41,679 (17711/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-05 08:30:02,587 (22322/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-05 08:30:02,588 (22322/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-05 08:50:19,292 (27905/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-05 08:50:19,292 (27905/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-05 08:50:22,993 (27905/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2021-11-05 08:50:22,995 (27905/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2021-11-05 08:50:33,978 (27905/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: UndefinedTable('relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n')
|
||||
2021-11-05 08:50:33,978 (27905/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n\n'
|
||||
2021-11-05 08:57:25,641 (30104/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-05 08:57:25,642 (30104/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 08:55:07,081 (19738/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 08:55:07,081 (19738/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 08:55:07,090 (19738/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 594, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "localhost" (127.0.0.1), port 5432 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\n\n'
|
||||
2021-11-08 08:55:12,106 (19757/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 08:55:12,107 (19757/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 08:55:16,132 (19757/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2021-11-08 08:55:16,133 (19757/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2021-11-08 10:19:28,729 (40329/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 10:19:28,731 (40329/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 10:19:32,527 (40329/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 590, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "admin"\n\n'
|
||||
2021-11-08 10:19:34,554 (40411/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 10:19:34,555 (40411/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 10:19:40,073 (40411/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 590, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "admin"\n\n'
|
||||
2021-11-08 10:21:49,509 (42696/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 10:21:49,509 (42696/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 10:21:52,395 (42696/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 590, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "admin"\n\n'
|
||||
2021-11-08 10:22:21,457 (42927/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 10:22:21,458 (42927/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 10:35:19,062 (42927/MainThread) pgcli.pgexecute ERROR - sql: '\\d certification_extension_billableevent', error: QueryCanceled('canceling statement due to user request\n')
|
||||
2021-11-08 10:35:19,068 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 455, in run\n response = pgspecial.execute(cur, sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgspecial/main.py", line 117, in execute\n return special_cmd.handler(cur=cur, pattern=pattern, verbose=verbose)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgspecial/dbcommands.py", line 888, in describe_table_details\n results.append(describe_one_table_details(cur, nspname, relname, oid, verbose))\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgspecial/dbcommands.py", line 1421, in describe_one_table_details\n result = cur.execute(sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.QueryCanceled: canceling statement due to user request\n\n'
|
||||
2021-11-08 10:36:24,851 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'drop table certification_extension_billableevent, certification_extension_scantronexam, certification_extension_scantronexamanswer, certification_extension_scantronprofile', error: UndefinedTable('table "certification_extension_scantronexam" does not exist\n')
|
||||
2021-11-08 10:36:24,852 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: table "certification_extension_scantronexam" does not exist\n\n'
|
||||
2021-11-08 10:37:15,501 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronprofile', error: UndefinedTable('relation "certification_extension_scantronprofile" does not exist\nLINE 1: select * from certification_extension_scantronprofile\n ^\n')
|
||||
2021-11-08 10:37:15,501 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "certification_extension_scantronprofile" does not exist\nLINE 1: select * from certification_extension_scantronprofile\n ^\n\n'
|
||||
2021-11-08 10:37:43,794 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'drop table certification_extension_billableevent, certification_extension_scantronexam, certification_extension_scantronexamanswer, certification_extension_scantronprofile', error: UndefinedTable('table "certification_extension_scantronexam" does not exist\n')
|
||||
2021-11-08 10:37:43,795 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: table "certification_extension_scantronexam" does not exist\n\n'
|
||||
2021-11-08 10:37:53,722 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'drop table certification_extension_billableevent, certification_extension_scantronexamanswer, certification_extension_scantronprofile', error: UndefinedTable('table "certification_extension_scantronexamanswer" does not exist\n')
|
||||
2021-11-08 10:37:53,722 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: table "certification_extension_scantronexamanswer" does not exist\n\n'
|
||||
2021-11-08 10:38:19,337 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'drop table certification_extension_scantronprofile', error: UndefinedTable('table "certification_extension_scantronprofile" does not exist\n')
|
||||
2021-11-08 10:38:19,338 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: table "certification_extension_scantronprofile" does not exist\n\n'
|
||||
2021-11-08 11:02:54,886 (55408/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 11:02:54,887 (55408/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 11:02:58,259 (55408/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2021-11-08 11:02:58,259 (55408/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2021-11-08 13:34:14,765 (38618/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 13:34:14,766 (38618/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 13:37:33,617 (41505/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 13:37:33,619 (41505/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 13:41:36,063 (43903/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 13:41:36,065 (43903/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 14:28:04,910 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2021-11-08 14:28:04,911 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2021-11-08 14:30:01,772 (42927/MainThread) pgcli.pgexecute ERROR - sql: '\\d certification_extension_billableevent', error: QueryCanceled('canceling statement due to user request\n')
|
||||
2021-11-08 14:30:01,773 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 455, in run\n response = pgspecial.execute(cur, sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgspecial/main.py", line 117, in execute\n return special_cmd.handler(cur=cur, pattern=pattern, verbose=verbose)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgspecial/dbcommands.py", line 888, in describe_table_details\n results.append(describe_one_table_details(cur, nspname, relname, oid, verbose))\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgspecial/dbcommands.py", line 1421, in describe_one_table_details\n result = cur.execute(sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.QueryCanceled: canceling statement due to user request\n\n'
|
||||
2021-11-08 14:35:15,722 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: UndefinedTable('relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n')
|
||||
2021-11-08 14:35:15,723 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n\n'
|
||||
2021-11-08 14:36:18,360 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: UndefinedTable('relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n')
|
||||
2021-11-08 14:36:18,361 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n\n'
|
||||
2021-11-08 14:37:19,184 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: UndefinedTable('relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n')
|
||||
2021-11-08 14:37:19,184 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n\n'
|
||||
2021-11-08 14:40:22,042 (73495/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 14:40:22,043 (73495/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 14:40:22,177 (73495/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 594, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-11-08 14:40:25,283 (73522/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 14:40:25,283 (73522/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 14:40:25,297 (73522/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 594, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-11-08 14:40:43,425 (73620/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 14:40:43,426 (73620/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 14:40:43,458 (73620/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 594, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-11-08 14:47:47,131 (75927/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 14:47:47,132 (75927/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 14:49:25,874 (76759/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 14:49:25,876 (76759/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-08 14:52:01,930 (78065/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-08 14:52:01,932 (78065/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-09 14:59:00,893 (78065/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2021-11-09 14:59:00,896 (78065/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2021-11-09 14:59:03,296 (78065/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: UndefinedTable('relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n')
|
||||
2021-11-09 14:59:03,297 (78065/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n\n'
|
||||
2021-11-10 13:49:16,749 (47353/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-10 13:49:16,749 (47353/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-11 09:40:09,425 (53465/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-11 09:40:09,426 (53465/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-11 09:40:13,089 (53465/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5431 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 590, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5431 failed: FATAL: password authentication failed for user "postgres"\n\n'
|
||||
2021-11-11 13:07:51,795 (55685/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-11 13:07:51,796 (55685/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-11 13:09:30,669 (56662/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-11 13:09:30,670 (56662/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-11 14:30:57,885 (56662/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronexamregistration', error: AdminShutdown('terminating connection due to unexpected postmaster exit\n')
|
||||
2021-11-11 14:30:57,889 (56662/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.AdminShutdown: terminating connection due to unexpected postmaster exit\n\n'
|
||||
2021-11-11 14:30:57,889 (56662/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantronexamregistration ', error: AdminShutdown('terminating connection due to unexpected postmaster exit\n')
|
||||
2021-11-11 14:30:57,891 (56662/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.AdminShutdown: terminating connection due to unexpected postmaster exit\n\n'
|
||||
2021-11-12 08:47:04,266 (49123/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-12 08:47:04,267 (49123/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-12 08:47:07,326 (49123/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 590, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "postgres"\n\n'
|
||||
2021-11-12 08:47:09,736 (49190/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-12 08:47:09,736 (49190/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-12 14:22:56,875 (49190/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronexamregistration \\', error: SyntaxError('syntax error at or near "\\"\nLINE 1: ...ct * from certification_extension_scantronexamregistration \\\n ^\n')
|
||||
2021-11-12 14:22:56,879 (49190/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "\\"\nLINE 1: ...ct * from certification_extension_scantronexamregistration \\\n ^\n\n'
|
||||
2021-11-12 14:40:24,839 (49190/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronexamregistration', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-11-12 14:40:24,841 (49190/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-11-12 14:40:24,841 (49190/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantronexamregistration ', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-11-12 14:40:24,844 (49190/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-11-15 16:39:21,176 (33079/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-15 16:39:21,177 (33079/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-16 15:32:44,142 (15628/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-16 15:32:44,143 (15628/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-17 08:12:04,000 (4888/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-17 08:12:04,001 (4888/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-22 14:36:29,563 (67418/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-22 14:36:29,563 (67418/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-23 13:23:16,872 (68414/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-23 13:23:16,873 (68414/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-23 13:23:16,901 (68414/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 594, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "localhost" (127.0.0.1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\n\n'
|
||||
2021-11-23 13:23:25,871 (68530/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-23 13:23:25,871 (68530/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-23 13:23:25,876 (68530/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 594, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "localhost" (127.0.0.1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\n\n'
|
||||
2021-11-23 13:23:43,525 (68759/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-23 13:23:43,525 (68759/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-23 13:23:43,534 (68759/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 594, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "localhost" (127.0.0.1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\n\n'
|
||||
2021-11-23 13:24:12,136 (69124/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-23 13:24:12,136 (69124/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-29 10:41:53,940 (82821/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-11-29 10:41:53,941 (82821/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-11-29 13:21:51,891 (82821/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronexamregistration', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-11-29 13:21:51,896 (82821/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-11-29 13:21:51,896 (82821/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantronexamregistration', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-11-29 13:21:51,897 (82821/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-12-01 08:28:59,730 (82821/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronexamregistration', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-12-01 08:28:59,734 (82821/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-12-01 08:28:59,734 (82821/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantronexamregistration', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-12-01 08:28:59,735 (82821/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-12-07 07:13:08,132 (82821/MainThread) pgcli.pgexecute ERROR - sql: 'truncate table certification_extension_scantronexamregistration', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-12-07 07:13:08,137 (82821/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-12-07 07:13:08,138 (82821/MainThread) pgcli.main ERROR - sql: 'truncate table certification_extension_scantronexamregistration', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-12-07 07:13:08,138 (82821/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-12-09 16:14:44,113 (82821/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronexamlevel', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-12-09 16:14:44,118 (82821/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-12-09 16:14:44,119 (82821/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantronexamlevel', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-12-09 16:14:44,120 (82821/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-12-10 15:58:26,613 (82821/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_requirementfield', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-12-10 15:58:26,616 (82821/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-12-10 15:58:26,616 (82821/MainThread) pgcli.main ERROR - sql: 'select * from certifications_requirementfield', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-12-10 15:58:26,617 (82821/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-12-13 16:25:30,941 (34852/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-12-13 16:25:30,942 (34852/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-12-14 13:30:07,447 (27069/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-12-14 13:30:07,448 (27069/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-12-15 17:02:38,245 (81089/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-12-15 17:02:38,246 (81089/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-12-15 17:03:42,831 (81089/MainThread) pgcli.pgexecute ERROR - sql: 'select * from requirementfieldentry', error: UndefinedTable('relation "requirementfieldentry" does not exist\nLINE 1: select * from requirementfieldentry\n ^\n')
|
||||
2021-12-15 17:03:42,833 (81089/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "requirementfieldentry" does not exist\nLINE 1: select * from requirementfieldentry\n ^\n\n'
|
||||
2021-12-15 17:03:58,382 (81357/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-12-15 17:03:58,383 (81357/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-12-15 17:08:43,647 (83471/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-12-15 17:08:43,660 (83471/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-12-17 11:28:46,126 (63454/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-12-17 11:28:46,127 (63454/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-12-17 11:28:51,199 (63454/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2021-12-17 11:28:51,200 (63454/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2021-12-17 15:09:20,582 (63454/MainThread) pgcli.pgexecute ERROR - sql: 'ps -aux', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-12-17 15:09:20,583 (63454/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-12-17 15:09:20,583 (63454/MainThread) pgcli.main ERROR - sql: 'ps -aux', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2021-12-17 15:09:20,585 (63454/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2021-12-17 15:09:20,634 (63454/MainThread) pgcli.pgexecute ERROR - sql: 'ps -aux', error: SyntaxError('syntax error at or near "ps"\nLINE 1: ps -aux\n ^\n')
|
||||
2021-12-17 15:09:20,634 (63454/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ps"\nLINE 1: ps -aux\n ^\n\n'
|
||||
2021-12-17 15:09:25,076 (63454/MainThread) pgcli.pgexecute ERROR - sql: 'ps -a', error: SyntaxError('syntax error at or near "ps"\nLINE 1: ps -a\n ^\n')
|
||||
2021-12-17 15:09:25,076 (63454/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ps"\nLINE 1: ps -a\n ^\n\n'
|
||||
2021-12-17 15:09:26,170 (63454/MainThread) pgcli.pgexecute ERROR - sql: 'ps', error: SyntaxError('syntax error at or near "ps"\nLINE 1: ps\n ^\n')
|
||||
2021-12-17 15:09:26,171 (63454/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ps"\nLINE 1: ps\n ^\n\n'
|
||||
2021-12-21 15:47:15,439 (77127/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-12-21 15:47:15,440 (77127/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-12-30 11:24:28,190 (68548/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2021-12-30 11:24:28,191 (68548/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2021-12-30 11:24:34,542 (68548/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2021-12-30 11:24:34,544 (68548/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2022-01-05 10:19:14,234 (68548/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronprofile', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2022-01-05 10:19:14,238 (68548/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2022-01-05 10:19:14,238 (68548/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantronprofile', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2022-01-05 10:19:14,240 (68548/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2022-01-24 14:00:41,764 (72705/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-01-24 14:00:41,765 (72705/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-01-31 11:49:54,069 (6381/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-01-31 11:49:54,070 (6381/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-02-11 07:09:32,918 (49740/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-02-11 07:09:32,919 (49740/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-09 13:13:48,854 (71820/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-09 13:13:48,854 (71820/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 10:09:57,585 (4187/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 10:09:57,586 (4187/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 10:11:26,015 (4187/MainThread) pgcli.pgexecute ERROR - sql: 'create role sql-dash-read-only', error: SyntaxError('syntax error at or near "-"\nLINE 1: create role sql-dash-read-only\n ^\n')
|
||||
2022-03-24 10:11:26,015 (4187/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "-"\nLINE 1: create role sql-dash-read-only\n ^\n\n'
|
||||
2022-03-24 10:14:35,607 (4187/MainThread) pgcli.pgexecute ERROR - sql: 'GRANT SELECT(\n id, last_login, is_superuser, username, first_name,\n last_name, email, is_staff, is_active, date_joined\n) ON auth_user TO sql_dash_read_only', error: UndefinedTable('relation "auth_user" does not exist\n')
|
||||
2022-03-24 10:14:35,607 (4187/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "auth_user" does not exist\n\n'
|
||||
2022-03-24 10:14:41,020 (4187/MainThread) pgcli.pgexecute ERROR - sql: 'GRANT SELECT(\n id, last_login, is_superuser, username, first_name,\n last_name, email, is_staff, is_active, date_joined\n) ON auth_user TO sql_dash_read_only', error: UndefinedTable('relation "auth_user" does not exist\n')
|
||||
2022-03-24 10:14:41,020 (4187/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "auth_user" does not exist\n\n'
|
||||
2022-03-24 10:14:46,792 (4187/MainThread) pgcli.pgexecute ERROR - sql: 'select * from auth_user', error: UndefinedTable('relation "auth_user" does not exist\nLINE 1: select * from auth_user\n ^\n')
|
||||
2022-03-24 10:14:46,792 (4187/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "auth_user" does not exist\nLINE 1: select * from auth_user\n ^\n\n'
|
||||
2022-03-24 10:22:34,313 (6571/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 10:22:34,313 (6571/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 10:22:34,318 (6571/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "localhost" (127.0.0.1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\n\n'
|
||||
2022-03-24 10:22:38,181 (6574/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 10:22:38,181 (6574/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 10:22:38,185 (6574/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "localhost" (127.0.0.1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\n\n'
|
||||
2022-03-24 10:22:59,223 (6582/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 10:22:59,224 (6582/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 10:48:14,456 (8362/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 10:48:14,456 (8362/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 11:45:58,658 (8362/MainThread) pgcli.pgexecute ERROR - sql: 'select * from auth_user', error: AdminShutdown('terminating connection due to unexpected postmaster exit\n')
|
||||
2022-03-24 11:45:58,660 (8362/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.AdminShutdown: terminating connection due to unexpected postmaster exit\n\n'
|
||||
2022-03-24 11:45:58,660 (8362/MainThread) pgcli.main ERROR - sql: 'select * from auth_user', error: AdminShutdown('terminating connection due to unexpected postmaster exit\n')
|
||||
2022-03-24 11:45:58,661 (8362/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.AdminShutdown: terminating connection due to unexpected postmaster exit\n\n'
|
||||
2022-03-24 11:46:44,630 (11895/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 11:46:44,631 (11895/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 11:46:47,868 (11895/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "sql_dash_read_only"\n\n'
|
||||
2022-03-24 11:56:21,417 (12566/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 11:56:21,418 (12566/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 11:56:26,258 (12566/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: role "sql_dash_read_only" is not permitted to log in\n\n'
|
||||
2022-03-24 11:56:29,193 (12570/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 11:56:29,194 (12570/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 13:04:26,705 (13035/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 13:04:26,705 (13035/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 13:04:36,749 (13035/MainThread) pgcli.pgexecute ERROR - sql: 'select * from auth_user', error: InsufficientPrivilege('permission denied for table auth_user\n')
|
||||
2022-03-24 13:04:36,750 (13035/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.InsufficientPrivilege: permission denied for table auth_user\n\n'
|
||||
2022-03-24 13:04:49,053 (13040/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 13:04:49,054 (13040/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 13:04:52,720 (13040/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2022-03-24 13:04:52,721 (13040/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2022-03-24 14:14:27,434 (13040/MainThread) pgcli.pgexecute ERROR - sql: 'select * from information_schema.enabled_roles', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2022-03-24 14:14:27,434 (13040/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2022-03-24 14:14:27,435 (13040/MainThread) pgcli.main ERROR - sql: 'select * from information_schema.enabled_roles', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2022-03-24 14:14:27,435 (13040/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2022-03-24 14:24:17,423 (15980/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 14:24:17,424 (15980/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 14:24:23,082 (15980/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "sql_dash_read_only"\n\n'
|
||||
2022-03-24 14:25:31,298 (16055/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 14:25:31,299 (16055/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 14:30:53,474 (16557/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 14:30:53,475 (16557/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 14:31:00,312 (16557/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "sql_dash_read_only"\n\n'
|
||||
2022-03-24 14:31:05,054 (16567/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 14:31:05,054 (16567/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-24 14:42:33,791 (18382/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-24 14:42:33,793 (18382/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-30 15:13:19,575 (60634/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-30 15:13:19,576 (60634/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-30 15:13:24,839 (60634/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-03-30 15:17:28,270 (62392/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-30 15:17:28,271 (62392/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-30 15:19:29,643 (63258/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-30 15:19:29,644 (63258/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-30 15:19:32,519 (63258/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-03-30 15:19:51,397 (63440/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-30 15:19:51,397 (63440/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-30 15:19:53,887 (63440/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-03-30 15:19:55,727 (63495/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-30 15:19:55,727 (63495/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-30 15:19:57,036 (63495/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-03-30 15:23:43,841 (65093/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-30 15:23:43,842 (65093/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-30 15:23:45,391 (65093/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-03-30 15:24:09,098 (65300/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-30 15:24:09,099 (65300/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-30 15:24:10,842 (65300/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-03-30 15:28:34,348 (67343/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-30 15:28:34,349 (67343/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-30 15:28:37,648 (67343/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-03-30 15:35:56,248 (70428/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-30 15:35:56,249 (70428/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-30 15:36:01,366 (70428/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-03-30 15:36:16,486 (70596/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-03-30 15:36:16,487 (70596/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-03-30 15:36:17,841 (70596/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-04-05 13:07:11,436 (25940/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 13:07:11,437 (25940/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 13:07:11,457 (25940/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "localhost" (127.0.0.1), port 5432 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\n\n'
|
||||
2022-04-05 13:07:55,050 (26136/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 13:07:55,050 (26136/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 13:07:55,163 (26136/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2022-04-05 14:54:20,493 (52223/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 14:54:20,493 (52223/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 14:54:41,820 (52304/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 14:54:41,820 (52304/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 14:54:41,878 (52304/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not translate host name "pgsql" to address: nodename nor servname provided, or not known\n\n'
|
||||
2022-04-05 14:54:49,787 (52396/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 14:54:49,787 (52396/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 14:54:49,840 (52396/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not translate host name "postgresql" to address: nodename nor servname provided, or not known\n\n'
|
||||
2022-04-05 15:33:23,657 (55856/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 15:33:23,658 (55856/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 15:33:23,665 (55856/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not translate host name "postgresql" to address: nodename nor servname provided, or not known\n\n'
|
||||
2022-04-05 15:33:29,698 (55876/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 15:33:29,699 (55876/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 15:33:46,534 (55897/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 15:33:46,535 (55897/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 15:36:35,422 (55951/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 15:36:35,422 (55951/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 15:40:12,210 (56074/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 15:40:12,210 (56074/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 15:40:13,138 (56074/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "this"\n\n'
|
||||
2022-04-05 15:42:38,636 (56135/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 15:42:38,636 (56135/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 15:42:40,188 (56135/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 664, in connect\n passwd = click.prompt(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/click/termui.py", line 166, in prompt\n value = prompt_func(prompt)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/click/termui.py", line 149, in prompt_func\n raise Abort() from None\nclick.exceptions.Abort\n'
|
||||
2022-04-05 15:42:42,194 (56156/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 15:42:42,194 (56156/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 15:42:42,996 (56156/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "this"\n\n'
|
||||
2022-04-05 15:42:47,005 (56176/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 15:42:47,006 (56176/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 15:42:49,408 (56176/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "postgres"\n\n'
|
||||
2022-04-05 15:42:53,119 (56195/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 15:42:53,119 (56195/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 15:56:37,228 (56781/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 15:56:37,229 (56781/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 16:11:31,900 (57287/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 16:11:31,901 (57287/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-05 16:41:56,400 (59595/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-05 16:41:56,401 (59595/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-06 10:27:09,242 (71051/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-06 10:27:09,242 (71051/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-06 10:27:15,537 (71051/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2022-04-06 10:27:15,539 (71051/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2022-04-06 14:16:41,182 (82821/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-06 14:16:41,182 (82821/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-06 14:16:44,387 (82821/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-04-06 14:16:46,657 (82842/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-06 14:16:46,658 (82842/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-06 14:51:10,164 (82842/MainThread) pgcli.pgexecute ERROR - sql: 'select name, refund_verbiage from orders', error: UndefinedColumn('column "name" does not exist\nLINE 1: select name, refund_verbiage from orders\n ^\n')
|
||||
2022-04-06 14:51:10,166 (82842/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "name" does not exist\nLINE 1: select name, refund_verbiage from orders\n ^\n\n'
|
||||
2022-04-06 14:51:14,168 (82842/MainThread) pgcli.pgexecute ERROR - sql: 'select name, refund_verbiage from tenants', error: UndefinedColumn('column "refund_verbiage" does not exist\nLINE 1: select name, refund_verbiage from tenants\n ^\nHINT: Perhaps you meant to reference the column "tenants.refund_verbage".\n')
|
||||
2022-04-06 14:51:14,168 (82842/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "refund_verbiage" does not exist\nLINE 1: select name, refund_verbiage from tenants\n ^\nHINT: Perhaps you meant to reference the column "tenants.refund_verbage".\n\n'
|
||||
2022-04-06 14:53:50,717 (92733/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-06 14:53:50,718 (92733/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-06 14:53:50,753 (92733/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not translate host name "postgres-uat.cluster-cq0jzbj6xbcq.us-east-1.rds.amazonaws.com/api-uat" to address: nodename nor servname provided, or not known\n\n'
|
||||
2022-04-06 14:54:13,771 (92805/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-06 14:54:13,771 (92805/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-06 14:54:16,153 (92805/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-uat.cluster-cq0jzbj6xbcq.us-east-1.rds.amazonaws.com" (10.254.188.8), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-uat.cluster-cq0jzbj6xbcq.us-east-1.rds.amazonaws.com" (10.254.188.8), port 5432 failed: FATAL: password authentication failed for user "api-uat"\nconnection to server at "postgres-uat.cluster-cq0jzbj6xbcq.us-east-1.rds.amazonaws.com" (10.254.188.8), port 5432 failed: FATAL: password authentication failed for user "api-uat"\n\n'
|
||||
2022-04-06 14:54:36,493 (92877/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-06 14:54:36,493 (92877/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-06 15:13:15,963 (97712/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-06 15:13:15,964 (97712/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-08 10:23:39,332 (32368/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-08 10:23:39,332 (32368/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-08 10:33:40,308 (32822/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-08 10:33:40,309 (32822/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-08 10:33:53,748 (32822/MainThread) pgcli.pgexecute ERROR - sql: 'select table_name from information_schema.tables \\copy', error: SyntaxError('syntax error at or near "\\"\nLINE 1: select table_name from information_schema.tables \\copy\n ^\n')
|
||||
2022-04-08 10:33:53,750 (32822/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "\\"\nLINE 1: select table_name from information_schema.tables \\copy\n ^\n\n'
|
||||
2022-04-08 10:34:14,793 (32822/MainThread) pgcli.main ERROR - sql: '\\copy select table_name from information_schema.tables', error: Exception('Enclose filename in single quotes')
|
||||
2022-04-08 10:34:14,795 (32822/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 463, in run\n response = pgspecial.execute(cur, sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgspecial/main.py", line 117, in execute\n return special_cmd.handler(cur=cur, pattern=pattern, verbose=verbose)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgspecial/iocommands.py", line 172, in copy\n raise Exception("Enclose filename in single quotes")\nException: Enclose filename in single quotes\n'
|
||||
2022-04-08 10:34:58,235 (32822/MainThread) pgcli.main ERROR - sql: '\\e select table_name from information_schema.tables', error: RuntimeError('Error reading file: select.')
|
||||
2022-04-08 10:34:58,236 (32822/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 836, in run_cli\n text = self.handle_editor_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 722, in handle_editor_command\n raise RuntimeError(message)\nRuntimeError: Error reading file: select.\n'
|
||||
2022-04-08 10:35:41,256 (32822/MainThread) pgcli.main ERROR - sql: '\\ef select table_name from information_schema.tables', error: RuntimeError('Function select does not exist.')
|
||||
2022-04-08 10:35:41,257 (32822/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 576, in function_definition\n cur.execute(sql, (spec,))\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedFunction: function "select" does not exist\nLINE 3: (SELECT \'select\'::pg_catalog.regproc::pg_catalog...\n ^\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 836, in run_cli\n text = self.handle_editor_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 718, in handle_editor_command\n query = self.pgexecute.function_definition(spec)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 580, in function_definition\n raise RuntimeError(f"Function {spec} does not exist.")\nRuntimeError: Function select does not exist.\n'
|
||||
2022-04-08 10:35:56,982 (32822/MainThread) pgcli.main ERROR - sql: '\\e select table_name from information_schema.tables', error: RuntimeError('Error reading file: select.')
|
||||
2022-04-08 10:35:56,983 (32822/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 836, in run_cli\n text = self.handle_editor_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 722, in handle_editor_command\n raise RuntimeError(message)\nRuntimeError: Error reading file: select.\n'
|
||||
2022-04-08 10:37:42,839 (32822/MainThread) pgcli.pgexecute ERROR - sql: 'select table_name from information_schema.tables \\o ~/tendenci_tables.txt', error: SyntaxError('syntax error at or near "\\"\nLINE 1: select table_name from information_schema.tables \\o ~/tenden...\n ^\n')
|
||||
2022-04-08 10:37:42,840 (32822/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "\\"\nLINE 1: select table_name from information_schema.tables \\o ~/tenden...\n ^\n\n'
|
||||
2022-04-08 10:41:12,825 (33066/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-08 10:41:12,825 (33066/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-08 10:56:29,695 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'grant select * on certification_certifications to this', error: SyntaxError('syntax error at or near "*"\nLINE 1: grant select * on certification_certifications to this\n ^\n')
|
||||
2022-04-08 10:56:29,697 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "*"\nLINE 1: grant select * on certification_certifications to this\n ^\n\n'
|
||||
2022-04-08 10:56:36,816 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'grant select on certification_certifications to this', error: UndefinedTable('relation "certification_certifications" does not exist\n')
|
||||
2022-04-08 10:56:36,816 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "certification_certifications" does not exist\n\n'
|
||||
2022-04-08 11:11:57,679 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname="None"', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2022-04-08 11:11:57,680 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2022-04-08 11:11:57,680 (33066/MainThread) pgcli.main ERROR - sql: 'select 1 from pg_roles where rolname="None"', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2022-04-08 11:11:57,682 (33066/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2022-04-08 11:11:57,819 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname="None"', error: UndefinedColumn('column "None" does not exist\nLINE 1: select 1 from pg_roles where rolname="None"\n ^\n')
|
||||
2022-04-08 11:11:57,819 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "None" does not exist\nLINE 1: select 1 from pg_roles where rolname="None"\n ^\n\n'
|
||||
2022-04-08 11:12:00,823 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname=None', error: UndefinedColumn('column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname=None\n ^\n')
|
||||
2022-04-08 11:12:00,823 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname=None\n ^\n\n'
|
||||
2022-04-08 11:12:34,301 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname="none"', error: UndefinedColumn('column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname="none"\n ^\n')
|
||||
2022-04-08 11:12:34,302 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname="none"\n ^\n\n'
|
||||
2022-04-08 11:12:38,215 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname="this"', error: UndefinedColumn('column "this" does not exist\nLINE 1: select 1 from pg_roles where rolname="this"\n ^\n')
|
||||
2022-04-08 11:12:38,216 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "this" does not exist\nLINE 1: select 1 from pg_roles where rolname="this"\n ^\n\n'
|
||||
2022-04-08 11:13:14,258 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select * from pg_roles where rolname="this"', error: UndefinedColumn('column "this" does not exist\nLINE 1: select * from pg_roles where rolname="this"\n ^\n')
|
||||
2022-04-08 11:13:14,258 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "this" does not exist\nLINE 1: select * from pg_roles where rolname="this"\n ^\n\n'
|
||||
2022-04-08 11:13:42,725 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname="this"', error: UndefinedColumn('column "this" does not exist\nLINE 1: select 1 from pg_roles where rolname="this"\n ^\n')
|
||||
2022-04-08 11:13:42,725 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "this" does not exist\nLINE 1: select 1 from pg_roles where rolname="this"\n ^\n\n'
|
||||
2022-04-08 11:14:09,120 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname=None', error: UndefinedColumn('column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname=None\n ^\n')
|
||||
2022-04-08 11:14:09,121 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname=None\n ^\n\n'
|
||||
2022-04-08 11:14:11,234 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname=none', error: UndefinedColumn('column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname=none\n ^\n')
|
||||
2022-04-08 11:14:11,234 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname=none\n ^\n\n'
|
||||
2022-04-12 10:51:11,155 (2315/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-12 10:51:11,156 (2315/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-12 10:51:27,258 (2315/MainThread) pgcli.pgexecute ERROR - sql: 'select * information_schema.tables', error: SyntaxError('syntax error at or near "information_schema"\nLINE 1: select * information_schema.tables\n ^\n')
|
||||
2022-04-12 10:51:27,259 (2315/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "information_schema"\nLINE 1: select * information_schema.tables\n ^\n\n'
|
||||
2022-04-12 10:51:29,981 (2315/MainThread) pgcli.pgexecute ERROR - sql: 'select * information_schema.table', error: SyntaxError('syntax error at or near "information_schema"\nLINE 1: select * information_schema.table\n ^\n')
|
||||
2022-04-12 10:51:29,982 (2315/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "information_schema"\nLINE 1: select * information_schema.table\n ^\n\n'
|
||||
2022-04-12 10:51:43,146 (2315/MainThread) pgcli.pgexecute ERROR - sql: 'select * information_schema', error: SyntaxError('syntax error at or near "information_schema"\nLINE 1: select * information_schema\n ^\n')
|
||||
2022-04-12 10:51:43,146 (2315/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "information_schema"\nLINE 1: select * information_schema\n ^\n\n'
|
||||
2022-04-12 10:55:39,774 (2315/MainThread) pgcli.pgexecute ERROR - sql: 'select * from V_payment_details', error: UndefinedTable('relation "v_payment_details" does not exist\nLINE 1: select * from V_payment_details\n ^\n')
|
||||
2022-04-12 10:55:39,775 (2315/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "v_payment_details" does not exist\nLINE 1: select * from V_payment_details\n ^\n\n'
|
||||
2022-04-13 14:47:52,287 (50411/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-13 14:47:52,288 (50411/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-15 13:31:14,397 (24981/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-15 13:31:14,398 (24981/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-15 13:32:12,604 (25292/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-15 13:32:12,605 (25292/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-15 13:37:34,831 (27071/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-15 13:37:34,832 (27071/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-21 14:40:39,742 (34321/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-21 14:40:39,742 (34321/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-21 14:41:21,552 (34321/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-04-21 14:41:45,779 (34813/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-21 14:41:45,779 (34813/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-21 14:41:54,559 (34813/MainThread) pgcli.pgexecute ERROR - sql: 'select * from tenant', error: UndefinedTable('relation "tenant" does not exist\nLINE 1: select * from tenant\n ^\n')
|
||||
2022-04-21 14:41:54,561 (34813/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "tenant" does not exist\nLINE 1: select * from tenant\n ^\n\n'
|
||||
2022-04-21 17:05:35,245 (27370/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-21 17:05:35,246 (27370/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-21 17:05:49,068 (27370/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-test.cluster-cp1xmzmrla9x.us-east-1.rds.amazonaws.com" (172.31.253.74), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-test.cluster-cp1xmzmrla9x.us-east-1.rds.amazonaws.com" (172.31.253.74), port 5432 failed: FATAL: password authentication failed for user "auroraadmin"\nconnection to server at "postgres-test.cluster-cp1xmzmrla9x.us-east-1.rds.amazonaws.com" (172.31.253.74), port 5432 failed: FATAL: password authentication failed for user "auroraadmin"\n\n'
|
||||
2022-04-21 17:05:52,734 (27585/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-21 17:05:52,735 (27585/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-21 17:06:02,439 (27585/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-test.cluster-cp1xmzmrla9x.us-east-1.rds.amazonaws.com" (172.31.253.74), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-test.cluster-cp1xmzmrla9x.us-east-1.rds.amazonaws.com" (172.31.253.74), port 5432 failed: FATAL: password authentication failed for user "auroraadmin"\nconnection to server at "postgres-test.cluster-cp1xmzmrla9x.us-east-1.rds.amazonaws.com" (172.31.253.74), port 5432 failed: FATAL: password authentication failed for user "auroraadmin"\n\n'
|
||||
2022-04-21 17:09:29,367 (30205/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-21 17:09:29,368 (30205/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-21 17:09:58,302 (30205/MainThread) pgcli.pgexecute ERROR - sql: 'create extension dblink', error: InsufficientPrivilege('permission denied to create extension "dblink"\nHINT: Must be superuser to create this extension.\n')
|
||||
2022-04-21 17:09:58,303 (30205/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.InsufficientPrivilege: permission denied to create extension "dblink"\nHINT: Must be superuser to create this extension.\n\n'
|
||||
2022-04-21 17:12:10,982 (32154/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-21 17:12:10,983 (32154/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-22 11:24:54,396 (71059/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-22 11:24:54,396 (71059/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-22 11:25:31,880 (71059/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-04-22 11:25:40,244 (71618/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-22 11:25:40,245 (71618/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-22 14:07:47,215 (71618/MainThread) pgcli.pgexecute ERROR - sql: 'select top 1 from tenants', error: SyntaxError('syntax error at or near "1"\nLINE 1: select top 1 from tenants\n ^\n')
|
||||
2022-04-22 14:07:47,218 (71618/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "1"\nLINE 1: select top 1 from tenants\n ^\n\n'
|
||||
2022-04-22 14:09:29,648 (71618/MainThread) pgcli.pgexecute ERROR - sql: 'update tenants set reporting_groups = { "group_1", "group_2" } where id=2', error: SyntaxError('syntax error at or near "{"\nLINE 1: update tenants set reporting_groups = { "group_1", "group_2"...\n ^\n')
|
||||
2022-04-22 14:09:29,649 (71618/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "{"\nLINE 1: update tenants set reporting_groups = { "group_1", "group_2"...\n ^\n\n'
|
||||
2022-04-22 14:35:03,896 (71618/MainThread) pgcli.pgexecute ERROR - sql: "select column from information_schema.tables where table_name like 'courses'", error: SyntaxError('syntax error at or near "column"\nLINE 1: select column from information_schema.tables where table_nam...\n ^\n')
|
||||
2022-04-22 14:35:03,897 (71618/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "column"\nLINE 1: select column from information_schema.tables where table_nam...\n ^\n\n'
|
||||
2022-04-22 14:35:07,675 (71618/MainThread) pgcli.pgexecute ERROR - sql: "select column_name from information_schema.tables where table_name like 'courses'", error: UndefinedColumn('column "column_name" does not exist\nLINE 1: select column_name from information_schema.tables where tabl...\n ^\n')
|
||||
2022-04-22 14:35:07,675 (71618/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "column_name" does not exist\nLINE 1: select column_name from information_schema.tables where tabl...\n ^\n\n'
|
||||
2022-04-22 16:09:26,666 (7589/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-22 16:09:26,667 (7589/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-22 16:16:36,779 (7589/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses where reporting_group', error: DatatypeMismatch('argument of WHERE must be type boolean, not type character varying\nLINE 1: select * from courses where reporting_group\n ^\n')
|
||||
2022-04-22 16:16:36,781 (7589/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.DatatypeMismatch: argument of WHERE must be type boolean, not type character varying\nLINE 1: select * from courses where reporting_group\n ^\n\n'
|
||||
2022-04-22 16:23:27,087 (7589/MainThread) pgcli.pgexecute ERROR - sql: 'select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, \' \', e2.mailing_address_2, \' \',e2.city, \' \',e2.state, \' \', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa\n join courses c\n on qa.moodle_course_id = c.moodle_course_id\n join enrolments e\n on qa.enrolment_id = e.id\n join enrolees e2\n on e.enrolee_id = e2.id\n join orders o\n on o.id = e.order_id\n where qa.batch_date = %s\n and qa.tenant_id = %s\n and c.tenant_id = %s\n and qa.status != %s\n and c.reporting_group = \'group_1\'', error: SyntaxError('syntax error at or near "%"\nLINE 10: where qa.batch_date = %s\n ^\n')
|
||||
2022-04-22 16:23:27,087 (7589/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "%"\nLINE 10: where qa.batch_date = %s\n ^\n\n'
|
||||
2022-04-26 16:07:28,155 (1837/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-26 16:07:28,156 (1837/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-26 16:07:29,713 (1837/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-04-26 16:07:49,687 (1918/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-26 16:07:49,687 (1918/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-27 08:41:16,632 (26618/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-27 08:41:16,632 (26618/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-27 11:07:27,267 (26618/MainThread) pgcli.pgexecute ERROR - sql: 'select course, id from courses', error: UndefinedColumn('column "course" does not exist\nLINE 1: select course, id from courses\n ^\n')
|
||||
2022-04-27 11:07:27,268 (26618/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "course" does not exist\nLINE 1: select course, id from courses\n ^\n\n'
|
||||
2022-04-27 11:17:46,772 (26618/MainThread) pgcli.pgexecute ERROR - sql: "delete from courses where course_name='big course'", error: UndefinedColumn('column "course_name" does not exist\nLINE 1: delete from courses where course_name=\'big course\'\n ^\n')
|
||||
2022-04-27 11:17:46,773 (26618/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "course_name" does not exist\nLINE 1: delete from courses where course_name=\'big course\'\n ^\n\n'
|
||||
2022-04-28 11:01:48,641 (2588/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-04-28 11:01:48,641 (2588/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-04-28 14:10:10,599 (2588/MainThread) pgcli.pgexecute ERROR - sql: "update tenants set reporting_groups = ['test'] where name = 'dev'", error: SyntaxError('syntax error at or near "["\nLINE 1: update tenants set reporting_groups = [\'test\'] where name = ...\n ^\n')
|
||||
2022-04-28 14:10:10,601 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "["\nLINE 1: update tenants set reporting_groups = [\'test\'] where name = ...\n ^\n\n'
|
||||
2022-04-28 15:09:04,121 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, \' \', e2.mailing_address_2, \' \',e2.city, \' \',e2.state, \' \', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa\n join courses c\n on qa.moodle_course_id = c.moodle_course_id\n join enrolments e\n on qa.enrolment_id = e.id\n join enrolees e2\n on e.enrolee_id = e2.id\n join orders o\n on o.id = e.order_id where', error: SyntaxError('syntax error at end of input\nLINE 9: on o.id = e.order_id where\n ^\n')
|
||||
2022-04-28 15:09:04,122 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at end of input\nLINE 9: on o.id = e.order_id where\n ^\n\n'
|
||||
2022-04-28 15:09:18,769 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, \' \', e2.mailing_address_2, \' \',e2.city, \' \',e2.state, \' \', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa\n join courses c\n on qa.moodle_course_id = c.moodle_course_id\n join enrolments e\n on qa.enrolment_id = e.id\n join enrolees e2\n on e.enrolee_id = e2.id\n join orders o\n on o.id = e.order_id where', error: SyntaxError('syntax error at end of input\nLINE 9: on o.id = e.order_id where\n ^\n')
|
||||
2022-04-28 15:09:18,769 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at end of input\nLINE 9: on o.id = e.order_id where\n ^\n\n'
|
||||
2022-04-28 15:09:42,096 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, \' \', e2.mailing_address_2, \' \',e2.city, \' \',e2.state, \' \', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa\n join courses c\n on qa.moodle_course_id = c.moodle_course_id\n join enrolments e\n on qa.enrolment_id = e.id\n join enrolees e2\n on e.enrolee_id = e2.id\n join orders o\n on o.id = e.order_id where', error: SyntaxError('syntax error at end of input\nLINE 9: on o.id = e.order_id where\n ^\n')
|
||||
2022-04-28 15:09:42,096 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at end of input\nLINE 9: on o.id = e.order_id where\n ^\n\n'
|
||||
2022-04-28 15:10:13,567 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, \' \', e2.mailing_address_2, \' \',e2.city, \' \',e2.state, \' \', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa\n join courses c\n on qa.moodle_course_id = c.moodle_course_id\n join enrolments e\n on qa.enrolment_id = e.id\n join enrolees e2\n on e.enrolee_id = e2.id\n join orders o\n on o.id = e.order_id where qa.attempt_date = \'2022-04-22\'', error: InvalidTextRepresentation('invalid input syntax for integer: "2022-04-22"\nLINE 9: ... on o.id = e.order_id where qa.attempt_date = \'2022-04-2...\n ^\n')
|
||||
2022-04-28 15:10:13,568 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.InvalidTextRepresentation: invalid input syntax for integer: "2022-04-22"\nLINE 9: ... on o.id = e.order_id where qa.attempt_date = \'2022-04-2...\n ^\n\n'
|
||||
2022-04-28 15:10:24,845 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, \' \', e2.mailing_address_2, \' \',e2.city, \' \',e2.state, \' \', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa\n join courses c\n on qa.moodle_course_id = c.moodle_course_id\n join enrolments e\n on qa.enrolment_id = e.id\n join enrolees e2\n on e.enrolee_id = e2.id\n join orders o\n on o.id = e.order_id where qa.attempt_date = \'2022-04-22\'', error: InvalidTextRepresentation('invalid input syntax for integer: "2022-04-22"\nLINE 9: ... on o.id = e.order_id where qa.attempt_date = \'2022-04-2...\n ^\n')
|
||||
2022-04-28 15:10:24,846 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.InvalidTextRepresentation: invalid input syntax for integer: "2022-04-22"\nLINE 9: ... on o.id = e.order_id where qa.attempt_date = \'2022-04-2...\n ^\n\n'
|
||||
2022-04-28 15:10:40,918 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, \' \', e2.mailing_address_2, \' \',e2.city, \' \',e2.state, \' \', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa\n join courses c\n on qa.moodle_course_id = c.moodle_course_id\n join enrolments e\n on qa.enrolment_id = e.id\n join enrolees e2\n on e.enrolee_id = e2.id\n join orders o\n on o.id = e.order_id where qa.attempt_date = date(\'2022-04-22\')', error: UndefinedFunction("operator does not exist: integer = date\nLINE 9: ... on o.id = e.order_id where qa.attempt_date = date('20...\n ^\nHINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.\n")
|
||||
2022-04-28 15:10:40,918 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedFunction: operator does not exist: integer = date\nLINE 9: ... on o.id = e.order_id where qa.attempt_date = date(\'20...\n ^\nHINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.\n\n'
|
||||
2022-04-29 14:13:29,777 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select * from tenants', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n')
|
||||
2022-04-29 14:13:29,778 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n'
|
||||
2022-04-29 14:13:30,966 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select * from tenant', error: OperationalError('SSL SYSCALL error: EOF detected\n')
|
||||
2022-04-29 14:13:30,966 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: SSL SYSCALL error: EOF detected\n\n'
|
||||
2022-04-29 14:13:30,966 (2588/MainThread) pgcli.main ERROR - sql: 'select * from tenant', error: OperationalError('SSL SYSCALL error: EOF detected\n')
|
||||
2022-04-29 14:13:30,968 (2588/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: SSL SYSCALL error: EOF detected\n\n'
|
||||
2022-04-29 14:13:34,627 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select * from tenant', error: UndefinedTable('relation "tenant" does not exist\nLINE 1: select * from tenant\n ^\n')
|
||||
2022-04-29 14:13:34,627 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: SSL SYSCALL error: EOF detected\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "tenant" does not exist\nLINE 1: select * from tenant\n ^\n\n'
|
||||
2022-04-29 14:13:36,603 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select * from tenant', error: UndefinedTable('relation "tenant" does not exist\nLINE 1: select * from tenant\n ^\n')
|
||||
2022-04-29 14:13:36,603 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "tenant" does not exist\nLINE 1: select * from tenant\n ^\n\n'
|
||||
2022-04-29 14:13:51,654 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select base_url from tenants', error: UndefinedColumn('column "base_url" does not exist\nLINE 1: select base_url from tenants\n ^\n')
|
||||
2022-04-29 14:13:51,654 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "base_url" does not exist\nLINE 1: select base_url from tenants\n ^\n\n'
|
||||
2022-04-29 14:14:02,552 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select tenant_url from tenants', error: UndefinedColumn('column "tenant_url" does not exist\nLINE 1: select tenant_url from tenants\n ^\n')
|
||||
2022-04-29 14:14:02,553 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "tenant_url" does not exist\nLINE 1: select tenant_url from tenants\n ^\n\n'
|
||||
2022-05-03 09:46:57,410 (2706/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-03 09:46:57,411 (2706/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-03 15:11:10,254 (4677/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-03 15:11:10,255 (4677/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-03 15:15:01,048 (4677/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2022-05-03 15:15:01,050 (4677/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2022-05-03 16:57:21,582 (4677/MainThread) pgcli.pgexecute ERROR - sql: "delete from courses where name='big course'\\", error: SyntaxError('syntax error at or near "\\"\nLINE 1: delete from courses where name=\'big course\'\\\n ^\n')
|
||||
2022-05-03 16:57:21,583 (4677/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "\\"\nLINE 1: delete from courses where name=\'big course\'\\\n ^\n\n'
|
||||
2022-05-04 14:26:03,419 (92146/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-04 14:26:03,419 (92146/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-04 14:28:33,458 (92146/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: Operation timed out\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: Operation timed out\n\tIs the server running on that host and accepting TCP/IP connections?\n\n'
|
||||
2022-05-04 14:29:00,762 (92176/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-04 14:29:00,763 (92176/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-04 14:31:30,815 (92176/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: Operation timed out\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: Operation timed out\n\tIs the server running on that host and accepting TCP/IP connections?\n\n'
|
||||
2022-05-04 16:06:18,184 (97891/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-04 16:06:18,184 (97891/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-05 13:17:44,175 (97891/MainThread) pgcli.pgexecute ERROR - sql: "delete from courses where name='big course'", error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n')
|
||||
2022-05-05 13:17:44,178 (97891/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n'
|
||||
2022-05-05 13:17:51,420 (56662/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-05 13:17:51,420 (56662/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-09 14:14:04,919 (32623/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-09 14:14:04,920 (32623/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-09 14:14:19,544 (32623/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: UndefinedTable('relation "courses" does not exist\nLINE 1: select * from courses\n ^\n')
|
||||
2022-05-09 14:14:19,545 (32623/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "courses" does not exist\nLINE 1: select * from courses\n ^\n\n'
|
||||
2022-05-09 14:43:22,969 (56662/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n')
|
||||
2022-05-09 14:43:22,970 (56662/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n'
|
||||
2022-05-09 14:43:26,767 (40416/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-09 14:43:26,767 (40416/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-12 07:50:04,801 (99382/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-12 07:50:04,801 (99382/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-12 07:50:06,178 (99382/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\n\n'
|
||||
2022-05-12 07:50:25,166 (99445/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-12 07:50:25,166 (99445/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-12 07:51:34,438 (99445/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: UndefinedTable('relation "courses" does not exist\nLINE 1: select * from courses\n ^\n')
|
||||
2022-05-12 07:51:34,438 (99445/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "courses" does not exist\nLINE 1: select * from courses\n ^\n\n'
|
||||
2022-05-12 07:51:50,602 (99718/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-12 07:51:50,602 (99718/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-12 07:52:17,196 (99718/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\n\n'
|
||||
2022-05-12 07:52:24,878 (99855/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-12 07:52:24,878 (99855/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-12 07:52:46,018 (99855/MainThread) pgcli.pgexecute ERROR - sql: 'select id from tenants where name like "dev"', error: UndefinedColumn('column "dev" does not exist\nLINE 1: select id from tenants where name like "dev"\n ^\n')
|
||||
2022-05-12 07:52:46,019 (99855/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "dev" does not exist\nLINE 1: select id from tenants where name like "dev"\n ^\n\n'
|
||||
2022-05-12 07:55:08,082 (99855/MainThread) pgcli.pgexecute ERROR - sql: '# select id, name, description, customer_price_cents, everblue_price_cents, course_status, moodle_course_id, tenant, customer_provided_identifier from course where tenant_id = 1', error: SyntaxError('syntax error at or near "#"\nLINE 1: # select id, name, description, customer_price_cents, everbl...\n ^\n')
|
||||
2022-05-12 07:55:08,082 (99855/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "#"\nLINE 1: # select id, name, description, customer_price_cents, everbl...\n ^\n\n'
|
||||
2022-05-12 07:55:15,623 (99855/MainThread) pgcli.pgexecute ERROR - sql: 'select id, name, description, customer_price_cents, everblue_price_cents, course_status, moodle_course_id, tenant, customer_provided_identifier from course where tenant_id = 1', error: UndefinedTable('relation "course" does not exist\nLINE 1: ...rse_id, tenant, customer_provided_identifier from course whe...\n ^\n')
|
||||
2022-05-12 07:55:15,623 (99855/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "course" does not exist\nLINE 1: ...rse_id, tenant, customer_provided_identifier from course whe...\n ^\n\n'
|
||||
2022-05-12 07:55:28,482 (99855/MainThread) pgcli.pgexecute ERROR - sql: 'select id, name, description, customer_price_cents, everblue_price_cents, course_status, moodle_course_id, tenant, customer_provided_identifier from courses where tenant_id = 1', error: UndefinedColumn('column "tenant" does not exist\nLINE 1: ...lue_price_cents, course_status, moodle_course_id, tenant, cu...\n ^\nHINT: Perhaps you meant to reference the column "courses.tenant_id".\n')
|
||||
2022-05-12 07:55:28,482 (99855/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "tenant" does not exist\nLINE 1: ...lue_price_cents, course_status, moodle_course_id, tenant, cu...\n ^\nHINT: Perhaps you meant to reference the column "courses.tenant_id".\n\n'
|
||||
2022-05-16 13:22:06,673 (48827/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-16 13:22:06,674 (48827/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-16 13:23:03,722 (49236/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-16 13:23:03,723 (49236/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-16 13:25:57,675 (49773/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-16 13:25:57,675 (49773/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-16 13:26:02,505 (49773/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\n\n'
|
||||
2022-05-16 13:27:07,697 (50016/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-16 13:27:07,697 (50016/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-16 13:30:42,417 (50826/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-16 13:30:42,418 (50826/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-16 13:31:30,925 (51065/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-16 13:31:30,925 (51065/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-16 13:31:31,954 (51065/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\n\n'
|
||||
2022-05-16 13:31:34,972 (51115/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-16 13:31:34,972 (51115/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-16 13:36:13,291 (51115/MainThread) pgcli.pgexecute ERROR - sql: 'select c.name, c.id, cc.timecompleted from mdl_course c join mdl_course_completions cc on cc.id = c.id', error: UndefinedColumn('column c.name does not exist\nLINE 1: select c.name, c.id, cc.timecompleted from mdl_course c join...\n ^\n')
|
||||
2022-05-16 13:36:13,292 (51115/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column c.name does not exist\nLINE 1: select c.name, c.id, cc.timecompleted from mdl_course c join...\n ^\n\n'
|
||||
2022-05-16 13:37:53,994 (51115/MainThread) pgcli.pgexecute ERROR - sql: 'select c.fullname, c.id, date(cc.timeenrolled) from mdl_course c join mdl_course_completions cc on cc.id = c.id', error: UndefinedFunction('function date(bigint) does not exist\nLINE 1: select c.fullname, c.id, date(cc.timeenrolled) from mdl_cour...\n ^\nHINT: No function matches the given name and argument types. You might need to add explicit type casts.\n')
|
||||
2022-05-16 13:37:53,994 (51115/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedFunction: function date(bigint) does not exist\nLINE 1: select c.fullname, c.id, date(cc.timeenrolled) from mdl_cour...\n ^\nHINT: No function matches the given name and argument types. You might need to add explicit type casts.\n\n'
|
||||
2022-05-17 11:23:22,155 (49236/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n')
|
||||
2022-05-17 11:23:22,159 (49236/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n'
|
||||
2022-05-17 11:23:54,076 (49236/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: OperationalError('another command is already in progress\n')
|
||||
2022-05-17 11:23:54,076 (49236/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: another command is already in progress\n\n'
|
||||
2022-05-17 11:23:55,325 (49236/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: OperationalError('another command is already in progress\n')
|
||||
2022-05-17 11:23:55,325 (49236/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: another command is already in progress\n\n'
|
||||
2022-05-17 11:24:02,013 (1287/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-17 11:24:02,014 (1287/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-17 11:24:05,443 (1287/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-05-17 11:24:08,300 (1326/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-17 11:24:08,301 (1326/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-17 15:26:23,305 (1326/MainThread) pgcli.pgexecute ERROR - sql: "update courses set email_passed=False where name='dwd'", error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n')
|
||||
2022-05-17 15:26:23,308 (1326/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n'
|
||||
2022-05-17 15:26:28,661 (1326/MainThread) pgcli.pgexecute ERROR - sql: "update courses set email_passed=False where name='dwd'", error: OperationalError('SSL SYSCALL error: EOF detected\n')
|
||||
2022-05-17 15:26:28,661 (1326/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: SSL SYSCALL error: EOF detected\n\n'
|
||||
2022-05-17 15:26:28,661 (1326/MainThread) pgcli.main ERROR - sql: "update courses set email_passed=False where name='dwd'", error: OperationalError('SSL SYSCALL error: EOF detected\n')
|
||||
2022-05-17 15:26:28,662 (1326/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: SSL SYSCALL error: EOF detected\n\n'
|
||||
2022-05-18 08:31:32,750 (1326/MainThread) pgcli.pgexecute ERROR - sql: 'update courses set email_passed=True where id=36', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2022-05-18 08:31:32,753 (1326/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2022-05-18 08:31:32,753 (1326/MainThread) pgcli.main ERROR - sql: 'update courses set email_passed=True where id=36', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n')
|
||||
2022-05-18 08:31:32,753 (1326/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n'
|
||||
2022-05-18 08:35:43,784 (51115/MainThread) pgcli.pgexecute ERROR - sql: 'select * from mdl_course', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n')
|
||||
2022-05-18 08:35:43,784 (51115/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n'
|
||||
2022-05-18 08:35:48,842 (10212/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-18 08:35:48,843 (10212/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-18 08:37:32,125 (10212/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: UndefinedTable('relation "courses" does not exist\nLINE 1: select * from courses\n ^\n')
|
||||
2022-05-18 08:37:32,126 (10212/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "courses" does not exist\nLINE 1: select * from courses\n ^\n\n'
|
||||
2022-05-18 08:37:59,799 (10631/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-18 08:37:59,799 (10631/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-18 08:38:11,274 (10631/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-05-18 08:38:13,478 (10692/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-18 08:38:13,478 (10692/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-18 08:40:46,308 (10692/MainThread) pgcli.pgexecute ERROR - sql: 'select * from mdl_course', error: UndefinedTable('relation "mdl_course" does not exist\nLINE 1: select * from mdl_course\n ^\n')
|
||||
2022-05-18 08:40:46,309 (10692/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "mdl_course" does not exist\nLINE 1: select * from mdl_course\n ^\n\n'
|
||||
2022-05-18 08:40:51,609 (11198/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-18 08:40:51,610 (11198/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-18 08:40:56,320 (11198/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\n\n'
|
||||
2022-05-18 08:41:11,227 (11277/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-18 08:41:11,227 (11277/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-19 13:39:47,694 (1326/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n')
|
||||
2022-05-19 13:39:47,697 (1326/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n'
|
||||
2022-05-19 13:39:52,927 (50352/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-19 13:39:52,927 (50352/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-19 13:40:17,338 (50352/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n'
|
||||
2022-05-19 13:40:18,719 (50470/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-19 13:40:18,719 (50470/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-19 14:25:40,357 (50470/MainThread) pgcli.pgexecute ERROR - sql: 'select * from mdl_course', error: UndefinedTable('relation "mdl_course" does not exist\nLINE 1: select * from mdl_course\n ^\n')
|
||||
2022-05-19 14:25:40,359 (50470/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "mdl_course" does not exist\nLINE 1: select * from mdl_course\n ^\n\n'
|
||||
2022-05-19 14:25:45,873 (50470/MainThread) pgcli.pgexecute ERROR - sql: 'select * from course', error: UndefinedTable('relation "course" does not exist\nLINE 1: select * from course\n ^\n')
|
||||
2022-05-19 14:25:45,873 (50470/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "course" does not exist\nLINE 1: select * from course\n ^\n\n'
|
||||
2022-05-20 13:20:39,803 (17284/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-20 13:20:39,804 (17284/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-20 13:21:37,290 (11277/MainThread) pgcli.pgexecute ERROR - sql: 'select * from mdl_course', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n')
|
||||
2022-05-20 13:21:37,292 (11277/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n'
|
||||
2022-05-20 13:23:31,729 (17284/MainThread) pgcli.pgexecute ERROR - sql: '/d courses', error: SyntaxError('syntax error at or near "/"\nLINE 1: /d courses\n ^\n')
|
||||
2022-05-20 13:23:31,730 (17284/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "/"\nLINE 1: /d courses\n ^\n\n'
|
||||
2022-05-20 16:30:44,833 (17284/MainThread) pgcli.pgexecute ERROR - sql: 'delete from courses where id = 698', error: ForeignKeyViolation('update or delete on table "courses" violates foreign key constraint "enrolments_course_id_fkey" on table "enrolments"\nDETAIL: Key (id)=(698) is still referenced from table "enrolments".\n')
|
||||
2022-05-20 16:30:44,835 (17284/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.ForeignKeyViolation: update or delete on table "courses" violates foreign key constraint "enrolments_course_id_fkey" on table "enrolments"\nDETAIL: Key (id)=(698) is still referenced from table "enrolments".\n\n'
|
||||
2022-05-23 10:12:51,327 (17284/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n')
|
||||
2022-05-23 10:12:51,329 (17284/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n'
|
||||
2022-05-23 10:12:55,533 (97962/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-23 10:12:55,533 (97962/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-23 10:39:48,202 (97962/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n')
|
||||
2022-05-23 10:39:48,204 (97962/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n'
|
||||
2022-05-25 08:13:49,656 (56324/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-25 08:13:49,657 (56324/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-25 08:14:38,955 (56324/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\n\n'
|
||||
2022-05-25 08:14:41,533 (56491/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-25 08:14:41,534 (56491/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-25 08:14:42,799 (56491/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\n\n'
|
||||
2022-05-25 08:14:51,040 (56522/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-25 08:14:51,040 (56522/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-25 08:14:54,810 (56522/MainThread) pgcli.pgexecute ERROR - sql: 'clear', error: SyntaxError('syntax error at or near "clear"\nLINE 1: clear\n ^\n')
|
||||
2022-05-25 08:14:54,811 (56522/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "clear"\nLINE 1: clear\n ^\n\n'
|
||||
2022-05-25 10:42:06,677 (56522/MainThread) pgcli.pgexecute ERROR - sql: 'select tenant from courses', error: UndefinedColumn('column "tenant" does not exist\nLINE 1: select tenant from courses\n ^\nHINT: Perhaps you meant to reference the column "courses.tenant_id".\n')
|
||||
2022-05-25 10:42:06,677 (56522/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "tenant" does not exist\nLINE 1: select tenant from courses\n ^\nHINT: Perhaps you meant to reference the column "courses.tenant_id".\n\n'
|
||||
2022-05-25 13:52:32,995 (56522/MainThread) pgcli.pgexecute ERROR - sql: 'insert into tenant_default_settings(tenant_id, customer_price_cents_email_passed) values(1, 199, True)', error: UndefinedColumn('column "customer_price_cents_email_passed" of relation "tenant_default_settings" does not exist\nLINE 1: insert into tenant_default_settings(tenant_id, customer_pric...\n ^\n')
|
||||
2022-05-25 13:52:32,996 (56522/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "customer_price_cents_email_passed" of relation "tenant_default_settings" does not exist\nLINE 1: insert into tenant_default_settings(tenant_id, customer_pric...\n ^\n\n'
|
||||
2022-05-26 08:56:14,126 (56522/MainThread) pgcli.pgexecute ERROR - sql: 'delete from tenan_default_settings where id=1', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n')
|
||||
2022-05-26 08:56:14,126 (56522/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n'
|
||||
2022-05-26 08:56:18,213 (37517/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-26 08:56:18,213 (37517/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-26 08:56:41,789 (37517/MainThread) pgcli.pgexecute ERROR - sql: 'delete from tenan_default_settings where id=1', error: UndefinedTable('relation "tenan_default_settings" does not exist\nLINE 1: delete from tenan_default_settings where id=1\n ^\n')
|
||||
2022-05-26 08:56:41,791 (37517/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "tenan_default_settings" does not exist\nLINE 1: delete from tenan_default_settings where id=1\n ^\n\n'
|
||||
2022-05-26 15:38:08,818 (37517/MainThread) pgcli.pgexecute ERROR - sql: 'delete * from tenant_default_settings', error: SyntaxError('syntax error at or near "*"\nLINE 1: delete * from tenant_default_settings\n ^\n')
|
||||
2022-05-26 15:38:08,818 (37517/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "*"\nLINE 1: delete * from tenant_default_settings\n ^\n\n'
|
||||
2022-05-26 15:38:20,397 (37517/MainThread) pgcli.pgexecute ERROR - sql: 'delete from courses where moodle_course_id = 5', error: ForeignKeyViolation('update or delete on table "courses" violates foreign key constraint "enrolments_course_id_fkey" on table "enrolments"\nDETAIL: Key (id)=(6) is still referenced from table "enrolments".\n')
|
||||
2022-05-26 15:38:20,398 (37517/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.ForeignKeyViolation: update or delete on table "courses" violates foreign key constraint "enrolments_course_id_fkey" on table "enrolments"\nDETAIL: Key (id)=(6) is still referenced from table "enrolments".\n\n'
|
||||
2022-05-26 15:38:25,477 (37517/MainThread) pgcli.pgexecute ERROR - sql: 'delete from courses where moodle_course_id = 6', error: ForeignKeyViolation('update or delete on table "courses" violates foreign key constraint "enrolments_course_id_fkey" on table "enrolments"\nDETAIL: Key (id)=(670) is still referenced from table "enrolments".\n')
|
||||
2022-05-26 15:38:25,477 (37517/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.ForeignKeyViolation: update or delete on table "courses" violates foreign key constraint "enrolments_course_id_fkey" on table "enrolments"\nDETAIL: Key (id)=(670) is still referenced from table "enrolments".\n\n'
|
||||
2022-05-27 09:06:02,323 (37517/MainThread) pgcli.pgexecute ERROR - sql: '\\d tenant_default_settings', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n')
|
||||
2022-05-27 09:06:02,333 (37517/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 463, in run\n response = pgspecial.execute(cur, sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgspecial/main.py", line 117, in execute\n return special_cmd.handler(cur=cur, pattern=pattern, verbose=verbose)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgspecial/dbcommands.py", line 896, in describe_table_details\n cur.execute(sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n'
|
||||
2022-05-27 09:08:51,502 (37517/MainThread) pgcli.pgexecute ERROR - sql: 'select * from tenant_default_settings', error: OperationalError('another command is already in progress\n')
|
||||
2022-05-27 09:08:51,502 (37517/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: another command is already in progress\n\n'
|
||||
2022-05-27 09:08:56,670 (45056/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 09:08:56,671 (45056/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 12:41:33,213 (7995/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 12:41:33,213 (7995/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 12:41:33,259 (7995/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not translate host name "postgresql://api-dev:tM54ynHFY2TsQeBW@postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com/api-dev" to address: nodename nor servname provided, or not known\n\n'
|
||||
2022-05-27 12:41:44,057 (8050/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 12:41:44,058 (8050/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 12:41:44,115 (8050/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not translate host name "postgresql://api-dev:tM54ynHFY2TsQeBW@postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com/" to address: nodename nor servname provided, or not known\n\n'
|
||||
2022-05-27 12:42:16,022 (8071/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 12:42:16,023 (8071/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 12:42:41,271 (8127/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 12:42:41,271 (8127/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 12:52:31,277 (9141/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 12:52:31,278 (9141/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 12:54:33,601 (9920/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 12:54:33,602 (9920/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 12:54:33,605 (9920/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server on socket "/tmp/.s.PGSQL.5432" failed: No such file or directory\n\tIs the server running locally and accepting connections on that socket?\n\n'
|
||||
2022-05-27 13:00:14,425 (11518/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 13:00:14,425 (11518/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 13:04:05,629 (12417/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 13:04:05,629 (12417/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 13:28:45,218 (26312/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 13:28:45,220 (26312/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 13:28:45,343 (26404/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 13:28:45,343 (26404/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 13:29:05,162 (26404/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 664, in connect\n passwd = click.prompt(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/click/termui.py", line 166, in prompt\n value = prompt_func(prompt)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/click/termui.py", line 149, in prompt_func\n raise Abort() from None\nclick.exceptions.Abort\n'
|
||||
2022-05-27 13:29:56,020 (27777/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 13:29:56,021 (27777/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 13:29:56,063 (27788/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 13:29:56,064 (27788/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 13:30:43,029 (27788/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 664, in connect\n passwd = click.prompt(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/click/termui.py", line 166, in prompt\n value = prompt_func(prompt)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/click/termui.py", line 149, in prompt_func\n raise Abort() from None\nclick.exceptions.Abort\n'
|
||||
2022-05-27 13:31:36,390 (29196/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 13:31:36,390 (29196/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 13:31:36,480 (29271/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 13:31:36,481 (29271/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 14:07:01,098 (36616/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 14:07:01,099 (36616/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 14:07:01,440 (36666/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 14:07:01,440 (36666/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 15:12:45,563 (54578/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 15:12:45,563 (54578/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-27 15:12:45,984 (54655/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-27 15:12:45,984 (54655/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-31 07:27:59,189 (54578/MainThread) pgcli.pgexecute ERROR - sql: 'select * from tenant_default_settings', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n')
|
||||
2022-05-31 07:27:59,193 (54578/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n'
|
||||
2022-05-31 07:28:03,038 (73365/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-31 07:28:03,038 (73365/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-05-31 07:28:05,731 (73396/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-05-31 07:28:05,732 (73396/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-01 07:43:47,215 (73364/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-01 07:43:47,215 (73412/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-01 07:43:47,216 (73364/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-01 07:43:47,216 (73412/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-01 07:46:45,714 (75670/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-01 07:46:45,715 (75670/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-01 07:46:46,160 (75747/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-01 07:46:46,160 (75747/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-03 14:31:22,418 (90402/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-03 14:31:22,418 (90477/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-03 14:31:22,419 (90402/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-03 14:31:22,419 (90477/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-03 14:36:12,744 (92449/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-03 14:36:12,744 (92449/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-03 14:36:12,762 (92462/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-03 14:36:12,763 (92462/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-03 14:40:38,255 (94423/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-03 14:40:38,255 (94416/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-03 14:40:38,256 (94423/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-03 14:40:38,256 (94416/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-03 14:48:10,485 (98056/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-03 14:48:10,485 (98087/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-03 14:48:10,485 (98056/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-03 14:48:10,485 (98087/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-03 14:49:31,325 (99851/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-03 14:49:31,325 (99851/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-03 14:49:31,536 (99911/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-03 14:49:31,537 (99911/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-03 14:57:46,548 (5070/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-03 14:57:46,548 (5070/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-03 14:57:46,717 (5154/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-03 14:57:46,718 (5154/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-03 14:59:55,471 (7375/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-03 14:59:55,471 (7375/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-03 14:59:55,607 (7458/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-03 14:59:55,608 (7458/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-05 19:42:20,712 (96995/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-05 19:42:20,713 (96995/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-05 19:42:20,725 (97070/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-05 19:42:20,725 (97070/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-06 14:32:43,758 (96995/MainThread) pgcli.pgexecute ERROR - sql: "delete from courses where name='Question workflow'", error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n')
|
||||
2022-06-06 14:32:43,762 (96995/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n'
|
||||
2022-06-06 14:32:48,060 (42811/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-06 14:32:48,060 (42811/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-06 15:15:29,165 (53842/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-06 15:15:29,165 (53842/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
2022-06-07 09:08:01,588 (94207/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager
|
||||
2022-06-07 09:08:01,589 (94207/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").
|
||||
Loading…
Add table
Add a link
Reference in a new issue