Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ARSnova Backend
Manage
Activity
Members
Labels
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
Paul-Christian Volkmer
ARSnova Backend
Commits
a3224b8b
Commit
a3224b8b
authored
7 years ago
by
Daniel Gerhardt
Browse files
Options
Downloads
Plain Diff
Merge branch '2.x'
parents
6fa5975e
cf57acdb
Branches
Branches containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+23
-0
23 additions, 0 deletions
CHANGELOG.md
src/main/java/de/thm/arsnova/dao/CouchDBDao.java
+1
-1
1 addition, 1 deletion
src/main/java/de/thm/arsnova/dao/CouchDBDao.java
with
24 additions
and
1 deletion
CHANGELOG.md
+
23
−
0
View file @
a3224b8b
# Changelog
## 2.5.1
This release fixes a performance issue on session creation affecting large
installations.
Bug fixes:
*
Session import works again.
Additional changes:
*
Libraries have been upgraded to fix potential bugs
## 2.4.3
This release fixes a performance issue on session creation affecting large
installations.
Bug fixes:
*
WebSocket communication now works correctly for course sessions.
(only affects installations using the LMS connector)
*
The configuration parameter
`security.facebook.allowed-roles`
is now
respected.
Additional changes:
*
Libraries have been upgraded to fix potential bugs
## 2.5
Major features:
*
Administration API: New endpoints have been added which are accessible by
...
...
This diff is collapsed.
Click to expand it.
src/main/java/de/thm/arsnova/dao/CouchDBDao.java
+
1
−
1
View file @
a3224b8b
...
...
@@ -533,9 +533,9 @@ public class CouchDBDao implements IDatabaseDao, ApplicationEventPublisherAware
}
@Override
@Transactional
(
isolation
=
Isolation
.
READ_COMMITTED
)
public
boolean
sessionKeyAvailable
(
final
String
keyword
)
{
final
View
view
=
new
View
(
"session/by_keyword"
);
view
.
setKey
(
keyword
);
final
ViewResults
results
=
getDatabase
().
view
(
view
);
return
!
results
.
containsKey
(
keyword
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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