Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rendering issue in sequence diagram where a deactivation directly follows activation #325

Open
RaimondB opened this issue Jan 11, 2024 · 0 comments

Comments

@RaimondB
Copy link

RaimondB commented Jan 11, 2024

Describe the bug
When I activate a lifeline, and directly deactivate, deactivation does not happen in certain cases.

To Reproduce

@startuml

participant "A" order 4
participant "B" order 5
participant "C" order 6
"A" -> "B" --++ : Message 1
"B" -> "C" --++ : Message 2
"C" -> "B" --++ : Message 3
deactivate "B"
"A" -> "B" ++ : Message 4
deactivate "A"
"B" -> "C" --++ : Message 5
deactivate "B"
@enduml

Expected behavior
Expected behavior is that lifeline B deactivates after Message 3. But instead it continues to be activated.

Screenshots
image

Desktop (please complete the following information):
Happens in plantuml server on the web (11 jan 2024) and also the docker based plantuml-server with the latest and jetty tags, pulled at 11 jan 2024 as well.

Additional context
When an additional message is added after message 3 on the next line, e.g. "C" -> "C" , it does work as expected.

@startuml

participant "A" order 4
participant "B" order 5
participant "C" order 6
"A" -> "B" --++ : Message 1
"B" -> "C" --++ : Message 2
"C" -> "B" --++ : Message 3
"A" -> "A"
deactivate "B"
"A" -> "B" ++ : Message 4
deactivate "A"
"B" -> "C" --++ : Message 5
deactivate "B"
@enduml

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant