Skip to content

Commit 9133143

Browse files
committed
add config path to overview
1 parent 738c064 commit 9133143

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

internal/file/file_manager_service.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ type (
5858

5959
fileServiceOperatorInterface interface {
6060
File(ctx context.Context, file *mpi.File, fileActions map[string]*model.FileCache) error
61-
UpdateOverview(ctx context.Context, instanceID string, filesToUpdate []*mpi.File, configPath string, iteration int) error
61+
UpdateOverview(ctx context.Context, instanceID string, filesToUpdate []*mpi.File, configPath string,
62+
iteration int) error
6263
ChunkedFile(ctx context.Context, file *mpi.File) error
6364
IsConnected() bool
6465
UpdateFile(

internal/model/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ type NginxConfigContext struct {
1515
StubStatus *APIDetails
1616
PlusAPI *APIDetails
1717
InstanceID string
18+
ConfigPath string
1819
Files []*v1.File
1920
AccessLogs []*AccessLog
2021
ErrorLogs []*ErrorLog
2122
NAPSysLogServers []string
2223
Includes []string
23-
ConfigPath string
2424
}
2525

2626
type APIDetails struct {

0 commit comments

Comments
 (0)