From 2724646e2996dbc91f28f05d90591a71073ce1d6 Mon Sep 17 00:00:00 2001 From: Adam R Grey Date: Wed, 29 Mar 2023 22:02:52 -0400 Subject: [PATCH] i don't believe jenkins is cooperating --- Jenkinsfile | 5 +++++ franz/gray_messages/message.cs | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 46f4836..a2e1688 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,4 +22,9 @@ pipeline { } } } + post { + always { + echo 'I will always say Hello again!' + } + } } \ No newline at end of file diff --git a/franz/gray_messages/message.cs b/franz/gray_messages/message.cs index 0fb8793..8af320c 100644 --- a/franz/gray_messages/message.cs +++ b/franz/gray_messages/message.cs @@ -5,7 +5,9 @@ using Newtonsoft.Json; namespace gray_messages { - //protip: you can derive from message and I'll dispatch it back to you just as you would expect + /// + ///I forget if I ever achieved this, but: theoretically you don't have to update the package for every message, just derive from this and go nuts + /// public abstract class message { public string type { get { return this.GetType().ToString(); } }