-
Notifications
You must be signed in to change notification settings - Fork 1
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
Give access to triggers of current container. #820
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me.
@@ -9,7 +9,7 @@ interface ArtemisService: | |||
static SELECTOR ::= ServiceSelector | |||
--uuid="61d82c0b-7009-4e16-b248-324de4e25f9B" | |||
--major=0 | |||
--minor=7 | |||
--minor=10 // TODO(florian): is this correct? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, this can stay 8. It is independent of the Artemis version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Completely confused myself about this...
8 now.
done.
src/service/service.toit
Outdated
@@ -130,6 +139,9 @@ class ArtemisServiceProvider extends ChannelServiceProvider | |||
container-current-trigger -> int: | |||
unreachable // Here to satisfy the checker. | |||
|
|||
container-current-triggers -> List: | |||
unreachable // Here to satisfy the checker. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unreachable // Here to satisfy the checker. | |
unreachable // Here to satisfy the checker. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done.
@@ -87,6 +90,9 @@ class ArtemisClient extends ServiceClient | |||
container-current-trigger -> int: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we going to deprecate this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The name is a bit confusing now.
This is the reason the container was started. So it's independent of the triggers
.
It could, theoretically, be a list of reasons. Currently we stop keeping track of them once we know that a container needs to be started.
No description provided.