summaryrefslogtreecommitdiffstats
path: root/events
diff options
context:
space:
mode:
authorPatrick Matthäi <pmatthaei@debian.org>2017-03-31 12:27:20 +0200
committerKaleb KEITHLEY <kkeithle@redhat.com>2017-04-02 21:36:51 -0400
commit826152055ff732b9c71f7766e0e197263b9fce95 (patch)
tree803a60c958ca33454aa6472b7d338a096a63f97c /events
parentdc4aa17e617b21d9faa00dc5048e3396bde63d95 (diff)
build: miscellaneous spelling fixes
Debian builds detected spelling issues with GlusterFS 3.10.1. Instead of carrying the patch in the Debian sources, let's include the fixes here too. Change-Id: I38db6adf142f7ec247bffd47aa1e6ff1a0c49e00 Reviewed-on-master: https://review.gluster.org/16973 Reported-by: Patrick Matthäi <pmatthaei@debian.org> BUG: 1437854 Signed-off-by: Niels de Vos <ndevos@redhat.com> Reviewed-on: https://review.gluster.org/16974 NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> CentOS-regression: Gluster Build System <jenkins@build.gluster.org> Smoke: Gluster Build System <jenkins@build.gluster.org> Reviewed-by: Zhou Zhengping <johnzzpcrystal@gmail.com> Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Diffstat (limited to 'events')
-rw-r--r--events/src/glustereventsd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/events/src/glustereventsd.py b/events/src/glustereventsd.py
index 4b56eee9131..918c56b6a92 100644
--- a/events/src/glustereventsd.py
+++ b/events/src/glustereventsd.py
@@ -59,7 +59,7 @@ class GlusterEventsRequestHandler(SocketServer.BaseRequestHandler):
try:
# Event Type to Function Map, Recieved event data will be in
# the form <TIMESTAMP> <TYPE> <DETAIL>, Get Event name for the
- # recieved Type/Key and construct a function name starting with
+ # received Type/Key and construct a function name starting with
# handle_ For example: handle_event_volume_create
func_name = "handle_" + all_events[int(key)].lower()
except IndexError: