On-call scheduling - daily rotation that spans continuously for two days sets two different usersIssue <!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> When creating a new on-call schedule set for daily rotation, spanning continuously for two days, two different users are added: first user will be on the rota till midnight and the other after midnight. Example scenario: Schedule with daily rotationEach shift starts at 10pm and ends at 4am the next dayOut-of-the-box (OOB), one user will be assigned between 10pm and midnight, and a different user will be assigned between midnight and 4am ReleaseMadridCauseThe system property "com.snc.on_call_rotation.factor_daily_rotation_interval_all_day" is either absent or set to true. Out-of-box, the property does not exist and system will consider daily rotation as "all day" rotation. For that reason, it will break at midnight and set a new user for the next day.ResolutionSet system property "com.snc.on_call_rotation.factor_daily_rotation_interval_all_day" to true. If the property does not exist, a new one should be created: Navigate to "App Properties" under "System Properties"Create a new property as follows: Name: com.snc.on_call_rotation.factor_daily_rotation_interval_all_dayType: True/FalseValue: false Related LinksThis and other On-Call Scheduling properties can be seen in the docs page.