@@ -607,7 +607,7 @@ var postEviction = pipeline($=>$
607
607
if ( name === 'root' || $ctx . username !== 'root' ) return response ( 403 )
608
608
if ( Number . isNaN ( time ) ) return response ( 400 )
609
609
if ( cluster ) {
610
- return response ( cluster . updateEviction ( myID , name , time , true ) ? 201 : 200 )
610
+ return response ( cluster . updateEviction ( myID , name , time ) ? 201 : 200 )
611
611
} else {
612
612
return response ( updateEviction ( name , time , expr ) ? 201 : 200 )
613
613
}
@@ -622,7 +622,7 @@ var deleteEviction = pipeline($=>$
622
622
var name = URL . decodeComponent ( $params . username )
623
623
if ( name === 'root' || $ctx . username !== 'root' ) return response ( 403 )
624
624
if ( cluster ) {
625
- cluster . updateEviction ( myID , name , null , true )
625
+ cluster . updateEviction ( myID , name , null )
626
626
} else {
627
627
updateEviction ( name , null )
628
628
}
@@ -879,7 +879,7 @@ var postFilesystem = pipeline($=>$
879
879
}
880
880
)
881
881
if ( cluster ) {
882
- cluster . updateFiles ( myID , $endpoint . id , updates , true )
882
+ cluster . updateFiles ( myID , $endpoint . id , updates )
883
883
}
884
884
return new Message ( { status : 201 } )
885
885
}
@@ -907,7 +907,7 @@ var postACL = pipeline($=>$
907
907
}
908
908
)
909
909
if ( cluster ) {
910
- cluster . updateACL ( myID , username , updates , true )
910
+ cluster . updateACL ( myID , username , updates )
911
911
}
912
912
return new Message ( { status : 201 } )
913
913
}
0 commit comments