Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
raven-administration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
raven
raven-administration
Commits
905ecf36
Commit
905ecf36
authored
6 months ago
by
Christoffer Stoll
Browse files
Options
Downloads
Patches
Plain Diff
bug: Make sure epoch dates from "fill in missing" is int not float
parent
aadb0876
No related branches found
No related tags found
1 merge request
!31
bug: Make sure epoch dates from "fill in missing" is int not float
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+9
-1
9 additions, 1 deletion
CHANGELOG.md
api/core/data/processing/filling.py
+1
-1
1 addition, 1 deletion
api/core/data/processing/filling.py
api/endpoints/version/routes.py
+1
-1
1 addition, 1 deletion
api/endpoints/version/routes.py
with
11 additions
and
3 deletions
CHANGELOG.md
+
9
−
1
View file @
905ecf36
...
...
@@ -3,12 +3,20 @@
All notable changes to this project will be documented in this file.
Changes before version 3.1.0 is not included
## [latest commits]
## [3.1.3] - 2024-09-27
### Added
-
Added a new guide explaing how to get E2a dataflow
### Fixed
-
Make sure epoch dates from "fill in missing" is int not float. It sometimes causes an error on import.
## [3.1.2] - 2024-09-26
### Added
-
Added variable for container name in docker-compose file
-
Exclude -9900 values, even if "include invalid values" is enabled in "historical data" module. The change is in Mean class, so it may affect others
...
...
This diff is collapsed.
Click to expand it.
api/core/data/processing/filling.py
+
1
−
1
View file @
905ecf36
...
...
@@ -62,7 +62,7 @@ class Filling:
def
__existing_dates__
(
cursor
:
any
,
sampling_point_id
,
epoch_from
,
epoch_to
):
sql
=
"""
select extract(epoch from to_time) as end_position
select extract(epoch from to_time)
::int
as end_position
from observations o
where o.sampling_point_id = %(sp)s
and extract(epoch from o.from_time) >= %(epoch_from)s
...
...
This diff is collapsed.
Click to expand it.
api/endpoints/version/routes.py
+
1
−
1
View file @
905ecf36
...
...
@@ -3,7 +3,7 @@ from flask_jwt_extended import create_access_token
import
requests
version_endpoint
=
Blueprint
(
'
version
'
,
__name__
)
current_version
=
"
3.1.
2
"
current_version
=
"
3.1.
3
"
@version_endpoint.route
(
'
/api/version
'
,
methods
=
[
'
GET
'
])
...
...
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