Skip to content

Commit

Permalink
#459 Master alphanumeric MetaDataSource type fix
Browse files Browse the repository at this point in the history
- revert small changes and save only necessary changes
  • Loading branch information
radek2s committed Feb 13, 2018
1 parent 1c6c518 commit 53aff70
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ branches:
- "/^PROC-.*$/"
- "/^develop-sdtabilit.*$/"
- "/^#179*$/"
- "/^#459.*/"
- "/^fix*$/"
- "/^master-sdtabilit.*$/"
- "/^v*$/"
notifications:
Expand Down
2 changes: 1 addition & 1 deletion WebContent/WEB-INF/classes/env.properties
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ abilit.disableDataSourcesOnServerStart=false
abilit.api.replace.alert.onview=true


abilit.cacheEnable=false
abilit.cacheEnable=true
abilit.START_UPDATE_UNSILENCED_ALARM_LEVEL=100000
abilit.START_UPDATE_EVENT_DETECTORS=100000
abilit.START_UPDATE_PENDING_EVENTS=100000
Expand Down
4 changes: 2 additions & 2 deletions src/org/scada_lts/mango/service/PointValueService.java
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ long savePointValueInTrasaction(final int pointId, final int dataType, double dv
retries--;
} catch (RuntimeException e) {
throw new RuntimeException(
"Error transactional saving point value: dataType=" + dataType
"Error saving point value: dataType=" + dataType
+ ", dvalue=" + dvalue, e);
}
}
Expand Down Expand Up @@ -252,7 +252,7 @@ public long savePointValue(final int pointId, final int dataType, double dvalue,
retries--;
} catch (RuntimeException e) {
throw new RuntimeException(
"Error no transaction saving point value: dataType=" + dataType
"Error saving point value: dataType=" + dataType
+ ", dvalue=" + dvalue, e);
}
}
Expand Down

0 comments on commit 53aff70

Please sign in to comment.