Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/soarca/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func main() {

err := godotenv.Load(".env")
if err != nil {
log.Warning("Failed to read env variable, but will continue")
log.Warning("Failed to read env variables because of error: ", err, " , but will continue.")
}
Host = "localhost:" + utils.GetEnv("PORT", "8080")
api.SwaggerInfo.Host = Host
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/manual/manual_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func NewManualHandler(interaction interaction.IInteractionStorage) *ManualHandle
// @Tags manual
// @Accept json
// @Produce json
// @Success 200 {object} api.Execution
// @Success 200 {object} []api.InteractionCommandData
// @failure 400 {object} []api.InteractionCommandData
// @Router /manual/ [GET]
func (manualHandler *ManualHandler) GetPendingCommands(g *gin.Context) {
Expand Down
Loading