From db9f4992bee63da3e023fbc5938e5ee8009042f7 Mon Sep 17 00:00:00 2001 From: Natalia Serrano Date: Tue, 6 May 2025 13:33:21 +0200 Subject: [PATCH] refs #1952 fix url --- CHANGELOG.md | 6 ++++++ linux/debian/changelog | 12 ++++++++++++ src/VERSION | 2 +- src/opengnsys/modules/server/ogAdmClient/__init__.py | 4 ++-- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca51f4b..49870db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [5.1.1] - 2025-05-06 + +### Fixed + +- Fixed URL for notifying stop to ogcore + ## [5.1.0] - 2025-05-06 ### Added diff --git a/linux/debian/changelog b/linux/debian/changelog index 66ff7e3..8028fa4 100644 --- a/linux/debian/changelog +++ b/linux/debian/changelog @@ -1,3 +1,15 @@ +ogagent (5.1.1-1) stable; urgency=medium + + * Fix URL for notifying stop to ogcore + + -- OpenGnsys developers Tue, 06 May 2025 13:31:48 +0200 + +ogagent (5.1.0-1) stable; urgency=medium + + * Include powershell helper script for logging out of windows + + -- OpenGnsys developers Tue, 06 May 2025 13:30:59 +0200 + ogagent (5.0.0-1) stable; urgency=medium * Use TLS diff --git a/src/VERSION b/src/VERSION index 0062ac9..ac14c3d 100644 --- a/src/VERSION +++ b/src/VERSION @@ -1 +1 @@ -5.0.0 +5.1.1 diff --git a/src/opengnsys/modules/server/ogAdmClient/__init__.py b/src/opengnsys/modules/server/ogAdmClient/__init__.py index 0410c9b..2a2769c 100644 --- a/src/opengnsys/modules/server/ogAdmClient/__init__.py +++ b/src/opengnsys/modules/server/ogAdmClient/__init__.py @@ -95,8 +95,8 @@ class ogAdmClientWorker (ogLiveWorker): Sends OGAgent stopping notification to OpenGnsys server """ logger.debug ('onDeactivation') - self.REST.sendMessage ('ogAdmClient/stopped', {'mac': self.mac, 'ip': self.IPlocal, 'idcentro': self.idcentro, 'idaula': self.idaula, - 'idordenador': self.idordenador, 'nombreordenador': self.nombreordenador}) + self.REST.sendMessage ('ogagent/stopped', {'mac': self.mac, 'ip': self.IPlocal, 'idcentro': self.idcentro, 'idaula': self.idaula, + 'idordenador': self.idordenador, 'nombreordenador': self.nombreordenador})