We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14e1135 commit cf0227bCopy full SHA for cf0227b
splunklib/client.py
@@ -285,6 +285,12 @@ def connect(**kwargs):
285
"""
286
return Service(**kwargs).login()
287
288
+# In preparation for adding Storm support, we added an
289
+# intermediary class between Service and Context. Storm's
290
+# API is not going to be the same as enterprise Splunk's
291
+# API, so we will derive both Service (for enterprise Splunk)
292
+# and StormService for (Splunk Storm) from _BaseService, and
293
+# put any shared behavior on it.
294
class _BaseService(Context):
295
pass
296
0 commit comments