Skip to content

Instantly share code, notes, and snippets.

2020-04-29 18:10:13,105 [139944795740112] (ERROR) agent: Unable to restart dhcp for ae7be05d-feee-45ed-91f6-c28695bf4412.
2020-04-29 18:10:13.105 26621 ERROR neutron.agent.dhcp.agent Traceback (most recent call last):
2020-04-29 18:10:13.105 26621 ERROR neutron.agent.dhcp.agent File "/usr/lib/python2.7/dist-packages/neutron/agent/dhcp/agent.py", line 144, in call_driver
2020-04-29 18:10:13.105 26621 ERROR neutron.agent.dhcp.agent getattr(driver, action)(**action_kwargs)
2020-04-29 18:10:13.105 26621 ERROR neutron.agent.dhcp.agent File "/usr/lib/python2.7/dist-packages/neutron/agent/linux/dhcp.py", line 148, in restart
2020-04-29 18:10:13.105 26621 ERROR neutron.agent.dhcp.agent self.enable()
2020-04-29 18:10:13.105 26621 ERROR neutron.agent.dhcp.agent File "/usr/lib/python2.7/dist-packages/neutron/agent/linux/dhcp.py", line 219, in enable
2020-04-29 18:10:13.105 26621 ERROR neutron.agent.dhcp.agent common_utils.wait_until_true(self._enable, timeout=300)
2020-04-29 18:10:13.105 26621 ERROR ne
2020-04-29 18:10:13,105 [139944795740112] (ERROR) agent: Unable to restart dhcp for ae7be05d-feee-45ed-91f6-c28695bf4412.
2020-04-29 18:10:13.105 26621 ERROR neutron.agent.dhcp.agent Traceback (most recent call last):
2020-04-29 18:10:13.105 26621 ERROR neutron.agent.dhcp.agent File "/usr/lib/python2.7/dist-packages/neutron/agent/dhcp/agent.py", line 144, in call_driver
2020-04-29 18:10:13.105 26621 ERROR neutron.agent.dhcp.agent getattr(driver, action)(**action_kwargs)
2020-04-29 18:10:13.105 26621 ERROR neutron.agent.dhcp.agent File "/usr/lib/python2.7/dist-packages/neutron/agent/linux/dhcp.py", line 148, in restart
2020-04-29 18:10:13.105 26621 ERROR neutron.agent.dhcp.agent self.enable()
2020-04-29 18:10:13.105 26621 ERROR neutron.agent.dhcp.agent File "/usr/lib/python2.7/dist-packages/neutron/agent/linux/dhcp.py", line 219, in enable
2020-04-29 18:10:13.105 26621 ERROR neutron.agent.dhcp.agent common_utils.wait_until_true(self._enable, timeout=300)
2020-04-29 18:10:13.105 26621 ERROR ne
# theme: https://github.com/jimeh/tmux-themepack
# powerline fonts: https://github.com/powerline/fonts
# set ` as the default prefix key combination
# and unbind C-b to free it up
set -g prefix `
unbind C-b
# use send-prefix to pass ` through to application
bind ` send-prefix
@justinjpacheco
justinjpacheco / git-common.sh
Last active December 16, 2017 20:42
git commands i usually use
git config --global user.email "[email protected]"
git config --global user.name "Justin Pacheco"
git config --global push.default simple
@justinjpacheco
justinjpacheco / vimrc
Last active June 10, 2018 12:15
vimrc
syntax on
set tabstop=2
set softtabstop=2
set shiftwidth=2
set expandtab
set autoindent
set ruler
set ls=2
set background=dark
set nocompatible