Browse Source

Spelling owners ingest (#36051)

Josh Soref 2 years ago
parent
commit
c2327baba2

+ 1 - 1
src/sentry/interfaces/exception.py

@@ -90,7 +90,7 @@ def upgrade_legacy_mechanism(data):
         )
 
     # All remaining data has to be moved to the "data" key. We assume that even
-    # if someone accidentally sent a corret top-level key (such as "handled"),
+    # if someone accidentally sent a correct top-level key (such as "handled"),
     # it will not pass our interface validation and should be moved to "data"
     # instead.
     result.setdefault("data", {}).update(data)

+ 2 - 2
src/sentry/scripts/tsdb/cmsketch.lua

@@ -352,7 +352,7 @@ function Sketch:import(payload)
     if table.is_empty(source_estimators) then
         -- If we're just writing the source index values (and not estimators)
         -- to the destination, we can just directly increment the sketch which
-        -- will take care of destinaton estimator updates and index truncation,
+        -- will take care of destination estimator updates and index truncation,
         -- if necessary.
         local items = {}
         for key, value in pairs(source_index) do
@@ -523,7 +523,7 @@ return Router:new({
 
     --[[
     Find the most frequently observed items across all sketches, returning a
-    seqeunce of item, score pairs.
+    sequence of item, score pairs.
     ]]--
     RANKED = Command:new(
         function (sketches, arguments)

+ 1 - 1
src/sentry/tasks/unmerge.py

@@ -252,7 +252,7 @@ def truncate_denormalizations(project, group):
 
     # XXX: This can cause a race condition with the ``FirstSeenEventCondition``
     # where notifications can be erroneously sent if they occur in this group
-    # before the reprocessing of the denormalizated data completes, since a new
+    # before the reprocessing of the denormalized data completes, since a new
     # ``GroupEnvironment`` will be created.
     for instance in GroupEnvironment.objects.filter(group_id=group.id):
         instance.delete()