Skip to content
Snippets Groups Projects
Commit fa67e8f2 authored by Joao Afonso's avatar Joao Afonso
Browse files

v4.8.1-1 fix

parent 887d24aa
No related branches found
No related tags found
No related merge requests found
Pipeline #44534 failed
......@@ -12,6 +12,12 @@
### Continuous Integration
- cta/CTA#205 - Updating EOS4/EOS4 in versionlock for v4.8.95/v5.1.5
# v4.8.1-1
## Summary
### Bug fixes
- cta/CTA#243 - Modify new queue cleanup protobuf fields from 'required' to 'optional'
# v4.8.0-1
## Summary
......
......@@ -587,10 +587,9 @@ echo $(jq --argjson CTA_MAJOR_VERSION $cta_major_version '. += {"cta_major_versi
%changelog
* Tue Dec 6 2022 Joao Afonso <joao.afonso@cern.ch> - 4.8.1-1
- Upgrade eos4/eos5 to 4.8.94/5.1.5
- Minor changes in preparation for next catalogue schema release
- See ReleaseNotes.md for details
* Mon Dec 12 2022 Joao Afonso <joao.afonso@cern.ch> - 4.8.1-1
- Fixes bug with protobuf definition
- See ReleaseNotes.md for more details
* Mon Nov 28 2022 Joao Afonso <joao.afonso@cern.ch> - 4.8.0-1
- This CTA release contains significant changes related to repacking, including the addition of new final and temporary states
......
......@@ -547,9 +547,9 @@ message RetrieveActivityCountPair {
}
message RetrieveQueueCleanupInfo {
required bool doCleanup = 14100;
optional bool doCleanup = 14100;
optional string assignedAgent = 14110;
required uint64 heartbeat = 14120;
optional uint64 heartbeat = 14120;
}
message RetrieveQueue {
......@@ -568,7 +568,7 @@ message RetrieveQueue {
optional string disk_system_slept_for = 10190;
optional uint64 sleep_time = 10200;
optional uint64 youngestjobcreationtime = 10210 [default = 0];
required RetrieveQueueCleanupInfo cleanupInfo = 10220;
optional RetrieveQueueCleanupInfo cleanupInfo = 10220;
}
// ------------- Repack data strcutures ----------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment