View | Details | Raw Unified | Return to bug 24749
Collapse All | Expand All

(-)a/Koha/Middleware/SetEnv.pm (+3 lines)
Lines 95-100 sub call { Link Here
95
        }
95
        }
96
    } @setenv_headers;
96
    } @setenv_headers;
97
97
98
    $setenvs{TMPDIR} = C4::Context->temporary_directory;
99
    # See bug 24749
100
98
    # Finally, everything is shoved into the $env.
101
    # Finally, everything is shoved into the $env.
99
    $env = {
102
    $env = {
100
        %$env,
103
        %$env,
(-)a/debian/scripts/koha-plack (-1 / +2 lines)
Lines 84-89 start_plack() Link Here
84
    [ -z $PLACK_MAX_REQUESTS ] && PLACK_MAX_REQUESTS="50"
84
    [ -z $PLACK_MAX_REQUESTS ] && PLACK_MAX_REQUESTS="50"
85
    PLACK_WORKERS=$(run_safe_xmlstarlet $instancename plack_workers)
85
    PLACK_WORKERS=$(run_safe_xmlstarlet $instancename plack_workers)
86
    [ -z $PLACK_WORKERS ] && PLACK_WORKERS="2"
86
    [ -z $PLACK_WORKERS ] && PLACK_WORKERS="2"
87
    KOHATMPDIR=$(run_safe_xmlstarlet $instancename tmp_path)
88
    [ -z $KOHATMPDIR ] || TMPDIR=$KOHATMPDIR
87
89
88
    instance_user="${instancename}-koha"
90
    instance_user="${instancename}-koha"
89
91
90
- 

Return to bug 24749