1
0
mirror of https://github.com/ceph/ceph synced 2025-03-30 23:40:09 +00:00

Merge PR into master

* refs/pull/24558/head:
	pybind/mgr: Fix Python 3 imports in diskprediction & insights

Reviewed-by: Noah Watkins <nwatkins@redhat.com>
This commit is contained in:
Sage Weil 2018-10-16 17:56:43 -05:00
commit 06af843bbc
4 changed files with 5 additions and 4 deletions
.githubmap
src/pybind/mgr
diskprediction/common
insights

View File

@ -83,3 +83,4 @@ adamemerson Adam C. Emerson <aemerson@redhat.com>
myoungwon Myoungwon Oh <omwmw@sk.com>
dillaman Jason Dillaman <dillaman@redhat.com>
batrick Patrick Donnelly <pdonnell@redhat.com>
noahdesu Noah Watkins <nwatkins@redhat.com>

View File

@ -1,7 +1,7 @@
from __future__ import absolute_import
import errno
from functools import wraps
from httplib import BAD_REQUEST
from six.moves.http_client import BAD_REQUEST
import os
import signal

View File

@ -6,8 +6,8 @@ import os
import time
from . import DummyResonse
import client_pb2
import client_pb2_grpc
from . import client_pb2
from . import client_pb2_grpc
def gen_configuration(**kwargs):

View File

@ -4,7 +4,7 @@ import re
import threading
import six
from mgr_module import MgrModule, CommandResult
import health as health_util
from . import health as health_util
# hours of crash history to report
CRASH_HISTORY_HOURS = 24