Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder memcached-solaris10-i386 Build #302

Results:

Failed shell_2 shell_3

SourceStamp:

Projectmemcached
Repositorygit://github.com/memcached/memcached.git
Branchnext
Revisiona7aafbbfe34ce2c0b564108a6b0d7a118be968e5
Got Revisiona7aafbbfe34ce2c0b564108a6b0d7a118be968e5
Changes2 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-memcached-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git update ( 1 secs )
    1. stdio
  2. shell 'bash autogen.sh' ( 3 secs )
    1. stdio
  3. shell_1 './configure --enable-sasl ...' ( 7 secs )
    1. stdio
    2. config.log
  4. shell_2 'gmake' failed ( 1 secs )
    1. stdio
  5. shell_3 'gmake test' failed ( 3 secs )
    1. stdio

Build Properties:

NameValueSource
branch next Build
builddir /export/home/buildbot/slave/memcached-solaris10-i386 slave
buildername memcached-solaris10-i386 Builder
buildnumber 302 Build
codebase Build
got_revision a7aafbbfe34ce2c0b564108a6b0d7a118be968e5 Git
project memcached Build
repository git://github.com/memcached/memcached.git Build
revision a7aafbbfe34ce2c0b564108a6b0d7a118be968e5 Build
scheduler schedule-memcached-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/memcached-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. David Carlier
  2. Sailesh Mukil

Timing:

StartWed Jan 26 00:11:28 2022
EndWed Jan 26 00:11:46 2022
Elapsed18 secs

All Changes:

:

  1. Change #146493

    Category memcached
    Changed by Sailesh Mukil <saileshohnoyoudont@apache.org>
    Changed at Wed 26 Jan 2022 00:00:05
    Repository git://github.com/memcached/memcached.git
    Project memcached
    Branch next
    Revision 5ae69e9d3c38b38288c2705f17ec980aa4130e41

    Comments

    Fix error message on conflicting ports while using '-l'
    Memcached can be started with configurable addresses to listen on,
    using the "-l" option. Eg:
        $> ./memcached -l 127.0.2.1:22122
    
    If the port 22122 is available, things run smoothly. However, if
    the port is unavailable, we see the following error message:
        "failed to listen on TCP port 11211"
    
    Note that the port number is incorrect and is the default port
    number 11211 instead of the configured 22122.
    
    This is because the server_sockets() function treats settings.port
    and settings.inter differently. If "-l" is provided, settings.inter
    contains the correct port number, whereas settings.port the default
    port, and settings.port is used to print the error info, hence
    printing the incorrect port number.
    
    Since multiple interfaces can be provided with '-l', this patch prints
    all of them on a bind error, to maintain code simplicity. The
    server_sockets() function is also adjusted to remember the first bind
    error's 'errno' that occurs, as the caller of server_sockets() relies
    on the errno to print the error message.

    Changed files

    • memcached.c
  2. Change #146494

    Category memcached
    Changed by David Carlier <devnexenohnoyoudont@gmail.com>
    Changed at Wed 26 Jan 2022 00:01:34
    Repository git://github.com/memcached/memcached.git
    Project memcached
    Branch next
    Revision a7aafbbfe34ce2c0b564108a6b0d7a118be968e5

    Comments

    core: fix large pages detection on redhat distros

    Changed files

    • memcached.c