diff options
author | Chocobozzz <me@florianbigard.com> | 2021-11-18 15:22:53 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-11-18 15:32:06 +0100 |
commit | 98846837ebb6bfbed3866eee5258946b35769651 (patch) | |
tree | b81e3271dd9ada90d2e1da1618e6d0bf4179055f | |
parent | ad5db1044c8599eaaaa2a578b350777ae996b068 (diff) | |
download | PeerTube-98846837ebb6bfbed3866eee5258946b35769651.tar.gz PeerTube-98846837ebb6bfbed3866eee5258946b35769651.tar.zst PeerTube-98846837ebb6bfbed3866eee5258946b35769651.zip |
Stop killing peertube in ci script
-rw-r--r-- | client/src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts | 2 | ||||
-rwxr-xr-x | scripts/ci.sh | 2 | ||||
-rw-r--r-- | server/models/video/video.ts | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/client/src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts b/client/src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts index 2ab9f4739..c2a318285 100644 --- a/client/src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts +++ b/client/src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts | |||
@@ -2,7 +2,7 @@ import { Component, EventEmitter, Input, OnChanges, Output, ViewChild } from '@a | |||
2 | import { AuthService, ConfirmService, Notifier, ScreenService } from '@app/core' | 2 | import { AuthService, ConfirmService, Notifier, ScreenService } from '@app/core' |
3 | import { BlocklistService, VideoBlockComponent, VideoBlockService, VideoReportComponent } from '@app/shared/shared-moderation' | 3 | import { BlocklistService, VideoBlockComponent, VideoBlockService, VideoReportComponent } from '@app/shared/shared-moderation' |
4 | import { NgbDropdown } from '@ng-bootstrap/ng-bootstrap' | 4 | import { NgbDropdown } from '@ng-bootstrap/ng-bootstrap' |
5 | import { UserRight, VideoCaption, VideoState } from '@shared/models' | 5 | import { VideoCaption } from '@shared/models' |
6 | import { | 6 | import { |
7 | Actor, | 7 | Actor, |
8 | DropdownAction, | 8 | DropdownAction, |
diff --git a/scripts/ci.sh b/scripts/ci.sh index 2cb3b96db..a628cbced 100755 --- a/scripts/ci.sh +++ b/scripts/ci.sh | |||
@@ -7,8 +7,6 @@ if [ $# -eq 0 ]; then | |||
7 | exit -1 | 7 | exit -1 |
8 | fi | 8 | fi |
9 | 9 | ||
10 | killall -q peertube || true | ||
11 | |||
12 | retries=3 | 10 | retries=3 |
13 | 11 | ||
14 | runTest () { | 12 | runTest () { |
diff --git a/server/models/video/video.ts b/server/models/video/video.ts index c49df1d5e..1050463d2 100644 --- a/server/models/video/video.ts +++ b/server/models/video/video.ts | |||
@@ -33,7 +33,7 @@ import { getHLSDirectory, getHLSRedundancyDirectory } from '@server/lib/paths' | |||
33 | import { VideoPathManager } from '@server/lib/video-path-manager' | 33 | import { VideoPathManager } from '@server/lib/video-path-manager' |
34 | import { getServerActor } from '@server/models/application/application' | 34 | import { getServerActor } from '@server/models/application/application' |
35 | import { ModelCache } from '@server/models/model-cache' | 35 | import { ModelCache } from '@server/models/model-cache' |
36 | import { AttributesOnly, buildVideoEmbedPath, buildVideoWatchPath, isThisWeek, pick } from '@shared/core-utils' | 36 | import { AttributesOnly, buildVideoEmbedPath, buildVideoWatchPath, pick } from '@shared/core-utils' |
37 | import { VideoFile, VideoInclude } from '@shared/models' | 37 | import { VideoFile, VideoInclude } from '@shared/models' |
38 | import { ResultList, UserRight, VideoPrivacy, VideoState } from '../../../shared' | 38 | import { ResultList, UserRight, VideoPrivacy, VideoState } from '../../../shared' |
39 | import { VideoObject } from '../../../shared/models/activitypub/objects' | 39 | import { VideoObject } from '../../../shared/models/activitypub/objects' |