(old, new)
| 455 | # - latency for propagation of updates is apparently comparable to deletion |
| 456 | |
| 457 | def merge_dicts_recursive(old, new): |
| 458 | result = old.copy() |
| 459 | for key, value in new.items(): |
| 460 | if key in result and isinstance(result[key], dict) and isinstance(value, dict): |
| 461 | result[key] = merge_dicts_recursive(result[key], value) |
| 462 | else: |
| 463 | result[key] = value |
| 464 | return result |
| 465 | |
| 466 | existing_span: dict = await clickhouse_get_span_raw(span_id) |
| 467 | if existing_span: |
no outgoing calls
no test coverage detected
searching dependent graphs…