Skip to content
Snippets Groups Projects
Select Git revision
  • 1750001b653ce519423ce9d68a0b2ec63bc498d6
  • master default protected
  • kirovets_doc
  • ypodlesov/unite-projection
  • max/parse-anonymous-blocks
  • sd/constant
  • docs/server_setup
  • ekhamitov/union-types
  • docs/privileges
  • sd/2244-issue
  • raiondesu/1984-used-tier-memory
  • lomakin/adr-client-bucket-awareness
  • lomakin/insert-query-sharding-metadata
  • 25.4 protected
  • ekhamitov/1977-remove-additional-child
  • gmoshkin/box-error-improvements
  • astrochuk/explain-fix
  • dkoltsov/support-https
  • docs/config_storage
  • ekhamitov/2365-fix-flaky
  • kostja-check-quorum
  • 25.4.4 protected
  • 25.3.8 protected
  • 25.3.7 protected
  • 25.4.3 protected
  • 25.3.6 protected
  • 25.4.2 protected
  • 25.3.5 protected
  • 25.4.1 protected
  • 25.5.0 protected
  • 25.3.4 protected
  • 25.3.3 protected
  • 25.3.2 protected
  • 25.4.0 protected
  • 25.3.1 protected
  • 25.2.4 protected
  • 25.2.3 protected
  • 25.2.2 protected
  • 25.2.1 protected
  • 25.3.0 protected
  • 25.1.2 protected
41 results

message.rs

Blame
  • off.test 870 B
    # encoding: tarantool
    #
    
    import os
    import sys
    
    # mask BFD warnings: https://bugs.launchpad.net/tarantool/+bug/1018356
    sys.stdout.push_filter("unable to read unknown load command 0x2\d+", "")
    
    print """
    # Bug #855616:
    # memcached_space must not be configured
    # (https://bugs.launchpad.net/bugs/855616)
    """
    # stop current server
    server.stop()
    # start server with memcached off
    server.deploy("box_memcached/tarantool_memcached_off.cfg")
    # check values
    exec admin "show configuration"
    
    # stop current server
    server.stop()
    # start server with memcached space conflict
    sys.stdout.push_filter("(/\S+)+/tarantool", "tarantool")
    server.test_option("-c " + os.path.join(os.getcwd(), "box_memcached/tarantool_memcached_bad.cfg"))
    sys.stdout.pop_filter()
    
    # restore default server
    server.stop()
    server.deploy(self.suite_ini["config"])
    
    sys.stdout.pop_filter()
    
    # vim: syntax=python