File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1359,17 +1359,17 @@ async def my_async_function():
1359
1359
return start_child_span_decorator
1360
1360
1361
1361
1362
- def start_span (** kwargs ):
1363
- return POTelSpan (active = True , ** kwargs )
1362
+ def start_span (* args , * *kwargs ):
1363
+ return POTelSpan (* args , active = True , ** kwargs )
1364
1364
1365
1365
1366
- def start_inactive_span (** kwargs ):
1367
- return POTelSpan (active = False , ** kwargs )
1366
+ def start_inactive_span (* args , * *kwargs ):
1367
+ return POTelSpan (* args , active = False , ** kwargs )
1368
1368
1369
1369
1370
- def start_transaction (** kwargs ):
1370
+ def start_transaction (* args , * *kwargs ):
1371
1371
# XXX force_transaction?
1372
- return POTelSpan (active = True , ** kwargs )
1372
+ return POTelSpan (* args , active = True , ** kwargs )
1373
1373
1374
1374
1375
1375
# Circular imports
You can’t perform that action at this time.
0 commit comments