File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -363,7 +363,7 @@ class TaskOptions:
363
363
Task IDs should be strings that contain only letters ([A-Za-z]), numbers ([0-9]),
364
364
hyphens (-), and underscores (_) with a maximum length of 500 characters. If a task's
365
365
ID is identical to that of an existing task or a task that was deleted or executed
366
- recently then the call will throw an error with code " functions/task-already-exists" .
366
+ recently then the call will throw an error with code ` functions/task-already-exists` .
367
367
Another task with the same ID can't be created for ~1hour after the original task was
368
368
deleted or executed.
369
369
@@ -376,7 +376,7 @@ class TaskOptions:
376
376
are sequential or have sequential prefixes, for example using a timestamp, causes an
377
377
increase in latency and error rates in all task commands.
378
378
379
- " Push IDs" from the Firebase Realtime Database make poor IDs because they are based on
379
+ Push IDs from the Firebase Realtime Database make poor IDs because they are based on
380
380
timestamps and will cause contention (slowdowns) in your task queue. Reversed push IDs
381
381
however form a perfect distribution and are an ideal key. To reverse a string in Python
382
382
use ``reversedString = someString[::-1]``
You can’t perform that action at this time.
0 commit comments