Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tarantool/tt
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.11.0
Choose a base ref
...
head repository: tarantool/tt
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Sep 15, 2025

  1. coredump: fix fiber commands of gdb extension

    Prior to this patch Tarantool GDB-extension failed during loading if
    `main_cord` symbol is optimized out. As a result fiber-related commands
    were not available, namely `info tt-fibers` and `tt-fiber`.
    
    Closes #1206
    
    @TarantoolBot document
    Title: Adjusted Tarantool GDB-extension to avoid load failure.
    elhimov authored and oleg-jukovec committed Sep 15, 2025
    Configuration menu
    Copy the full SHA
    dc35274 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2025

  1. cartridge: fix discovery to avoid missing aliases

    Implementation of cartridge bootstrap in `tt` needs to know aliases of
    all instances to work properly. Aliases of instances are managed with
    `membership` module which spreads out certain instance alias across the
    rest of instances using `gossip` protocol. At the very start of
    an instance only that instance "knows" its alias, others get this
    knowledge with some delay. That means in turn that the topology obtained
    from the different instances might differ in terms of aliases.
    
    Prior to this patch topology from a single instance was used and if at
    that moment this instance haven't collected information about all the
    aliases, bootstrap failed. Now if any alias is missing we are trying to
    get it from the topologies obtained from the other instances until all
    aliases are resolved.
    
    The patch fixes flaky test so there is not need to introduce new tests.
    
    Closes #TNTP-3709
    elhimov authored and dmyger committed Sep 25, 2025
    Configuration menu
    Copy the full SHA
    2eba9ef View commit details
    Browse the repository at this point in the history
Loading