Skip to content

Commit 07c3883

Browse files
authored
chore: Remove extra delay on sleep
2 parents 79a464d + 9061d2f commit 07c3883

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.15.0] - 2025-12-15
9+
10+
### Removed
11+
- Extra delay
12+
813
## [0.14.0] - 2025-12-15
914

1015
### Removed
@@ -100,6 +105,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
100105
### Added
101106
- Initial release
102107

108+
[0.15.0]: https://github.com/gooddata/gooddata-neobackstop/compare/v0.14.0...v0.15.0
103109
[0.14.0]: https://github.com/gooddata/gooddata-neobackstop/compare/v0.13.0...v0.14.0
104110
[0.13.0]: https://github.com/gooddata/gooddata-neobackstop/compare/v0.12.0...v0.13.0
105111
[0.12.0]: https://github.com/gooddata/gooddata-neobackstop/compare/v0.11.1...v0.12.0

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.14.0
1+
0.15.0

screenshotter/job.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func Job(logPrefix string, saveDir string, viewportLabel string, page playwright
4646
// delay
4747
if job.Delay != nil {
4848
fmt.Println(logPrefix, "sleep start")
49-
time.Sleep(job.Delay.PostReady + 500*time.Millisecond)
49+
time.Sleep(job.Delay.PostReady)
5050
fmt.Println(logPrefix, "sleep end")
5151
}
5252

0 commit comments

Comments
 (0)