Skip to content
Snippets Groups Projects
Commit 84656ecd authored by Alain BUTEAU's avatar Alain BUTEAU
Browse files

Created tag release_3_1_2.

parent 8f82f6d5
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
</parent> </parent>
<groupId>fr.soleil.device</groupId> <groupId>fr.soleil.device</groupId>
<artifactId>DataFitter-${aol}-${mode}</artifactId> <artifactId>DataFitter-${aol}-${mode}</artifactId>
<version>3.1.2-SNAPSHOT</version> <version>3.1.2</version>
<packaging>nar</packaging> <packaging>nar</packaging>
<name>DataFitter</name> <name>DataFitter</name>
<!-- use for the name of executable --> <!-- use for the name of executable -->
......
...@@ -402,10 +402,17 @@ namespace DataFitter_ns ...@@ -402,10 +402,17 @@ namespace DataFitter_ns
source_ready_ = false; source_ready_ = false;
source_x_.reset( new Tango::AttributeProxy( config_.data_source.attr_name_x.str ) ); source_x_.reset( new Tango::AttributeProxy( config_.data_source.attr_name_x.str ) );
// MANTIS 24726
if (source_x_)
source_x_info_ = source_x_->get_config(); source_x_info_ = source_x_->get_config();
else
return;
source_y_.reset( new Tango::AttributeProxy( config_.data_source.attr_name_y.str ) ); source_y_.reset( new Tango::AttributeProxy( config_.data_source.attr_name_y.str ) );
if (source_y_)
source_y_info_ = source_y_->get_config(); source_y_info_ = source_y_->get_config();
else
return;
if ( config_.data_source.use_sigma ) if ( config_.data_source.use_sigma )
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment