Skip to main content

STATUS_MERGE_CONFLICT

Constant STATUS_MERGE_CONFLICT 

Source
pub const STATUS_MERGE_CONFLICT: u16 = 293;
Expand description

HTTP status code for merge conflicts (Section 2.2).

The server sends this status code (293) when it detects conflicting versions during a merge operation. The client should apply the merge strategy specified by the Merge-Type header to resolve the conflict.

ยงExample

use crate::protocol::STATUS_MERGE_CONFLICT;

assert_eq!(STATUS_MERGE_CONFLICT, 293);