diff --git a/gnocchi/cli/api.py b/gnocchi/cli/api.py
index e84290a0a..4ea8784a2 100644
--- a/gnocchi/cli/api.py
+++ b/gnocchi/cli/api.py
@@ -14,9 +14,9 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 import copy
-from distutils import spawn
 import math
 import os
+import shutil
 import sys
 
 import daiquiri
@@ -72,7 +72,7 @@ def api():
             "No need to pass `--' in gnocchi-api command line anymore, "
             "please remove")
 
-    uwsgi = conf.api.uwsgi_path or spawn.find_executable("uwsgi")
+    uwsgi = conf.api.uwsgi_path or shutil.which("uwsgi")
     if not uwsgi:
         LOG.error("Unable to find `uwsgi'.\n"
                   "Be sure it is installed and in $PATH.")
diff --git a/gnocchi/common/redis.py b/gnocchi/common/redis.py
index e8a05834d..f359e0b63 100644
--- a/gnocchi/common/redis.py
+++ b/gnocchi/common/redis.py
@@ -17,6 +17,7 @@
 import re
 
 from oslo_config import cfg
+from oslo_utils import strutils
 from urllib import parse
 
 try:
@@ -155,7 +156,7 @@ def get_client(conf, scripts=None):
         if a not in options:
             continue
         if a in CLIENT_BOOL_ARGS:
-            v = utils.strtobool(options[a][-1])
+            v = strutils.bool_from_string(options[a][-1])
         elif a in CLIENT_LIST_ARGS:
             v = options[a]
         elif a in CLIENT_INT_ARGS:
diff --git a/gnocchi/rest/api.py b/gnocchi/rest/api.py
index 8d95d7e0e..ad0ff9130 100644
--- a/gnocchi/rest/api.py
+++ b/gnocchi/rest/api.py
@@ -22,6 +22,7 @@
 import uuid
 
 import jsonpatch
+from oslo_utils import strutils
 import pecan
 from pecan import rest
 import pyparsing
@@ -189,7 +190,7 @@ def get_bool_param(name, params, default='false'):
 def strtobool(varname, v):
     """Convert a string to a boolean."""
     try:
-        return utils.strtobool(v)
+        return strutils.bool_from_string(v, strict=True)
     except ValueError as e:
         abort(400, "Unable to parse `%s': %s" % (varname, str(e)))
 
diff --git a/gnocchi/utils.py b/gnocchi/utils.py
index 7cadf84b0..d22b32433 100644
--- a/gnocchi/utils.py
+++ b/gnocchi/utils.py
@@ -15,7 +15,6 @@
 # License for the specific language governing permissions and limitations
 # under the License.
 import datetime
-import distutils.util
 import errno
 import functools
 import itertools
@@ -198,12 +197,6 @@ def ensure_paths(paths):
                 raise
 
 
-def strtobool(v):
-    if isinstance(v, bool):
-        return v
-    return bool(distutils.util.strtobool(v))
-
-
 class StopWatch(object):
     """A simple timer/stopwatch helper class.