Skip to content
Snippets Groups Projects
  1. Nov 16, 2021
    • Vladislav Shpilevoy's avatar
      luatest: copy config in cluster:build_server() · 33ea6824
      Vladislav Shpilevoy authored
      It takes box.cfg config as an argument. And changes the argument
      by adding a new key 'command'. If the caller wants to pass the
      same box.cfg or slightly modified to several build_server() calls,
      it won't work - all options will be the same on all instances.
      
      For example:
      
          local cfg = {...}
          cfg.replication = {url1}
          cluster:build_server(cfg)
          cfg.replication = {url2}
          cluster:build_server(cfg)
      
      It will not work. Both servers will get the same 'command' and the
      same 'replication'.
      33ea6824
    • Vladislav Shpilevoy's avatar
      error: use error_payload in Lua · 54be00b6
      Vladislav Shpilevoy authored
      In Lua struct error used RTTI to return members of the error
      depending on its type. If a field was added to error's payload, it
      wasn't visible. The patch makes Lua use error_payload instead of
      RTTI. Now if the payload gets a new field, it becomes
      automatically visible in Lua without need to introduce a new
      method for it.
      
      Part of #5568
      Part of #4610
      Part of #4907
      54be00b6
    • Vladislav Shpilevoy's avatar
      error: use error_payload in MessagePack codecs · 45ac12ae
      Vladislav Shpilevoy authored
      Before this patch mp_error API could only encode and decode
      hardcoded fields from the C++ classes inheriting struct error.
      
      The fields are gone from the classes in a previous patch - moved
      into error_payload. Now to be able to support arbitrary fields in
      the payload the MessagePack encoding/decoding must use its content
      instead of hardcoded fields depending on error type.
      
      Part of #5568
      Part of #4610
      Part of #4907
      45ac12ae
    • Vladislav Shpilevoy's avatar
      error: use error_payload to store optional members · 5c709076
      Vladislav Shpilevoy authored
      error_payload is a part of struct error now. All the fields stored
      in C++ classes on top of struct error are moved into the payload.
      
      Part of #5568
      Part of #4610
      Part of #4907
      5c709076
    • Vladislav Shpilevoy's avatar
      error: move code to struct error from ClientError · 0acc60e7
      Vladislav Shpilevoy authored
      All optional fields soon will be moved into error_payload. Code
      was optional too. But it is needed too often, the most used field.
      The patch moves it into struct error to make it more accessible.
      
      Also in future it should allow to drop the hack
      ClientError::get_errcode() which tries to return error code
      depending on error type. But could just store the code right away.
      
      As a consequence of the patch, errors which didn't have an error
      code at all before, such as LuajitError, now have it 0 in Lua.
      
      Part of #5568
      Part of #4610
      0acc60e7
    • Vladislav Shpilevoy's avatar
      error: introduce error_payload · 2a9f0ab0
      Vladislav Shpilevoy authored
      It is a dictionary-like struct which stores keys with binary data
      values. The values are supposed to be arbitrary MessagePack blobs:
      number, string, bool, UUID, array, map, anything.
      
      The payload is an array inside instead of a hash table because
      number of keys will be <= 3 in all cases. And even when it will be
      public, it is very unlikely it will be bigger.
      
      Object of error_payload in a future patch will be stored in struct
      error and will allow to extend it dynamically with more members.
      
      This in turn is needed to extend ER_READONLY error with more
      details about why it happened.
      
      Part of #5568
      Part of #4907
      2a9f0ab0
    • Vladislav Shpilevoy's avatar
      uuid: move into libcore · 1a812213
      Vladislav Shpilevoy authored
      libuuid used to be a separate library since
      de11d68a ("CMake: refactor
      dependencies of internal libraries").
      
      Unclear what was it done for. The commit says "fir unit tests".
      But they perfectly fine can depend on libcore like many of them
      do already.
      
      Because of libuuid being a separate library, libcore can't use
      tt_uuid, because that would be a cyclic dependency. And that won't
      allow to introduce tt_uuid-dependent API in a next patch.
      
      Hence libuuid is merged into libcore.
      
      Needed for #5568
      1a812213
    • Vladislav Shpilevoy's avatar
      diag: return created error from diag_set() · d77232d7
      Vladislav Shpilevoy authored
      And from diag_add(). This will be helpful not to bother with
      box_error_last() and diag_last_error(diag_get()) in the future
      patch. It will change some attributes of a just created
      ER_READONLY error to add more details.
      
      Part of #5568
      d77232d7
  2. Nov 15, 2021
    • Vladislav Shpilevoy's avatar
      test: fix watcher unit test duplicate symbol · 50d5807e
      Vladislav Shpilevoy authored
      Watcher unit test linked with libbox and included
      core_test_utils.c. Both contain cord_on_yield() symbol.
      
      It is defined as a stub in core_test_utils and checks being inside
      of GC in libbox.
      
      Somehow it managed to link all this time just fine. And moreover
      the linker selected the correct symbol - the one from
      core_test_utils.
      
      But while making another patch (not submitted yet), some other
      unit test was changed a bit and the watcher unit test link stage
      started failing with 'cord_on_yield()' duplicate symbol.
      
      The patch drops core_test_utils from the test and makes it work
      with libbox correctly. To support that the test now needs to
      initialize the global Lua state.
      50d5807e
    • Georgy Moiseev's avatar
      rpm: actualize changelog · 0e83f330
      Georgy Moiseev authored
      Actualize changelog based on GitHub release pages changelogs. Some
      entries were skipped since they are not relevant to modern packages.
      Versions 1.8.1 and 2.0.4 changelogs were merged to 2.1.1 changelog.
      
      Closes #6397
      0e83f330
    • Georgy Moiseev's avatar
      debian: actualize changelog · 069ff078
      Georgy Moiseev authored
      Actualize changelog based on GitHub release pages changelogs. Some
      entries were skipped since they are not relevant to modern packages.
      Versions 1.8.1 and 2.0.4 changelogs were merged to 2.1.1 changelog.
      
      Part of #6397
      069ff078
    • Yaroslav Lobankov's avatar
      ci: add integration check for expirationd module · 1ac382f2
      Yaroslav Lobankov authored
      This patch extends the 'integration.yml' workflow and adds a new
      workflow call for running tests to verify integration between tarantool
      and the expiration module.
      
      Part of #5265
      Part of #6056
      Closes #6528
      1ac382f2
  3. Nov 11, 2021
Loading