This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Django 2.0 support | |
Replace django.core.urlresolves with django.urls | |
(In Django 2.0) The django.core.urlresolvers module is removed | |
in favor of its new location, django.urls. | |
It was deprecated in Django 1.10: | |
https://docs.djangoproject.com/en/2.0/releases/1.10/#id3 | |
Add py35dj20 job to test Django 2.0 integration. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[local|localrc]] | |
enable_service s-proxy s-object s-container s-account | |
# migrate to new neutron service configuration | |
disable_service q-svc | |
disable_service q-agt | |
disable_service q-dhcp | |
disable_service q-l3 | |
disable_service q-meta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
escape ^t^t | |
startup_message off | |
defscrollback 10000 | |
# <ESCAPE> w | |
bind w windowlist -b | |
hardstatus alwayslastline "%{= rw} %H %{= wk} %L=%-w%{= bw}%30L> %n%f %t*%{= wk}%+Lw%-17< %-=%{= gk} %y/%m/%d %c" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[local|localrc]] | |
unset OS_CLOUD | |
#OFFLINE=True | |
RECLONE=True | |
#disable_service tempest | |
#disable_service horizon | |
enable_service heat h-api h-api-cfn h-api-cw h-eng |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[local|localrc]] | |
#OFFLINE=True | |
RECLONE=True | |
HORIZON_BRANCH=stable/mitaka | |
KEYSTONE_BRANCH=stable/mitaka | |
NOVA_BRANCH=stable/mitaka | |
NEUTRON_BRANCH=stable/mitaka | |
GLANCE_BRANCH=stable/mitaka | |
CINDER_BRANCH=stable/mitaka |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[local|localrc]] | |
#OFFLINE=True | |
RECLONE=True | |
#disable_service mysql | |
#enable_service postgresql | |
#disable_service cinder c-sch c-api c-vol | |
#disable_service tempest | |
#disable_service horizon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Gerrit Dashboard Creator https://github.com/sdague/gerrit-dash-creator.git | |
[dashboard] | |
title = NEC OpenStack CI Status | |
description = Review Inbox | |
foreach = project:openstack/neutron status:open | |
[section "Recent failures in NEC OpenStack CI, but Jenkins succeeds"] | |
query = label:Verified<=-1,nec-openstack-ci label:Verified>=1,jenkins NOT age:2week | |
[section "Recent failures (vote=0), but Jenkins succeeds"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){ | |
/* Bookmarklet maker: http://userjs.up.seesaa.net/js/bookmarklet.html */ | |
/* Configuraitons */ | |
me = 'Akihiro Motoki'; | |
ci_hide = true; | |
fail_hide = false; | |
/* main code */ | |
list = document.querySelectorAll('table.commentPanelHeader'); | |
for(i in list) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import eventlet | |
import eventlet.corolocal | |
import time | |
def print_thread(prefix): | |
while True: | |
ident = eventlet.corolocal.get_ident() | |
print "%s (%s): %s" % (prefix, ident, time.time()) | |
eventlet.sleep(2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import threading | |
import time | |
import eventlet | |
import eventlet.corolocal | |
# NOTE(rpodolyaka): threading is patched here | |
eventlet.monkey_patch() |
NewerOlder