diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/smb2_create.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source3/smbd/smb2_create.c b/source3/smbd/smb2_create.c index fb7ec291ce..6d7d4ac5db 100644 --- a/source3/smbd/smb2_create.c +++ b/source3/smbd/smb2_create.c @@ -244,7 +244,13 @@ NTSTATUS smbd_smb2_request_process_create(struct smbd_smb2_request *smb2req) } tevent_req_set_callback(tsubreq, smbd_smb2_request_create_done, smb2req); - return smbd_smb2_request_pending_queue(smb2req, tsubreq, 500); + /* + * For now we keep the logic that we do not send STATUS_PENDING + * for sharing violations, so we just wait 2 seconds. + * + * TODO: we need more tests for this. + */ + return smbd_smb2_request_pending_queue(smb2req, tsubreq, 2000000); } static uint64_t get_mid_from_smb2req(struct smbd_smb2_request *smb2req) |