Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
HdbTdbArchivingServers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Control System
Tango controls archiving
HdbTdbArchivingServers
Commits
30163a87
Commit
30163a87
authored
Jan 25, 2013
by
Yann Huriez
Browse files
Options
Downloads
Patches
Plain Diff
bug fixe : rac connection property wasn't retrieve properly
parent
7ca4dd27
No related branches found
Tags
release_2_1_2
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/Common/Watcher/AbsArchivingWatcher.java
+4
-2
4 additions, 2 deletions
src/main/java/Common/Watcher/AbsArchivingWatcher.java
with
4 additions
and
2 deletions
src/main/java/Common/Watcher/AbsArchivingWatcher.java
+
4
−
2
View file @
30163a87
...
...
@@ -168,8 +168,8 @@ public abstract class AbsArchivingWatcher extends DeviceImpl implements TangoCon
* appended to all device's (or attributes) name. false otherwise.<br>
* <b>Default value : </b> false
*/
private
final
boolean
hdbRacConnection
=
false
;
private
final
boolean
tdbRacConnection
=
false
;
private
boolean
hdbRacConnection
=
false
;
private
boolean
tdbRacConnection
=
false
;
/**
* It defines the minimum number of KO attributes which put the device in
...
...
@@ -221,6 +221,7 @@ public abstract class AbsArchivingWatcher extends DeviceImpl implements TangoCon
schema
=
HdbTdbConnectionParameters
.
getHDbSchema
();
hdbUser
=
HdbTdbConnectionParameters
.
getHDBUser
();
hdbPwd
=
HdbTdbConnectionParameters
.
getHDBPassword
();
hdbRacConnection
=
HdbTdbConnectionParameters
.
isHDbRac
();
HdbTdbConnectionParameters
.
printHDBConnectionInfoLog
();
...
...
@@ -239,6 +240,7 @@ public abstract class AbsArchivingWatcher extends DeviceImpl implements TangoCon
schema
=
HdbTdbConnectionParameters
.
getTDbSchema
();
tdbUser
=
HdbTdbConnectionParameters
.
getTDBUser
();
tdbPwd
=
HdbTdbConnectionParameters
.
getTDBPassword
();
tdbRacConnection
=
HdbTdbConnectionParameters
.
isTDbRac
();
HdbTdbConnectionParameters
.
printTDBConnectionInfoLog
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment