Skip to content
Snippets Groups Projects
Commit f3fb36b8 authored by Sonia Minolli's avatar Sonia Minolli
Browse files

Created tag release_2_5_0.

parent 646eda52
Branches
Tags
No related merge requests found
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<groupId>fr.soleil.device</groupId> <groupId>fr.soleil.device</groupId>
<artifactId>AIControllerV2-${aol}-${mode}</artifactId> <artifactId>AIControllerV2-${aol}-${mode}</artifactId>
<version>2.4.4-SNAPSHOT</version> <version>2.5.0</version>
<packaging>nar</packaging> <packaging>nar</packaging>
<name>AIControllerV2</name> <name>AIControllerV2</name>
...@@ -76,7 +76,7 @@ ...@@ -76,7 +76,7 @@
<dependency> <dependency>
<groupId>fr.soleil.lib</groupId> <groupId>fr.soleil.lib</groupId>
<artifactId>ASL-${aol}-${library}-${mode}</artifactId> <artifactId>ASL-${aol}-${library}-${mode}</artifactId>
<version>1.4.7-SNAPSHOT</version> <version>1.5.0</version>
</dependency> </dependency>
</dependencies> </dependencies>
<developers> <developers>
......
...@@ -146,6 +146,15 @@ public: ...@@ -146,6 +146,15 @@ public:
_CPTC("NexusManager::pushNexusData")); _CPTC("NexusManager::pushNexusData"));
} }
if (!data)
{
ERROR_STREAM << "Try to send null data to Nexus!" << std::endl;
this->manageNexusAbort();
THROW_DEVFAILED(_CPTC("DEVICE_ERROR"),
_CPTC("Cannot store data in Nexus file: null data!"),
_CPTC("NexusManager::pushNexusData"));
}
try try
{ {
this->m_pAcqWriter->PushData(item_name, data); this->m_pAcqWriter->PushData(item_name, data);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment