Skip to content

Commit f36077f

Browse files
authored
fix some generation issues after dir migrate (#210)
1 parent e5d518b commit f36077f

19 files changed

+5
-74
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 70 deletions
This file was deleted.

assets/openapi/server-template/js/index.mustache

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
const config = require('./generated/config');
2-
const logger = require('./generated/logger');
3-
const ExpressServer = require('./generated/expressServer');
1+
const config = require('../mify-generated/services/{{serviceName}}/config');
2+
const logger = require('../mify-generated/services/{{serviceName}}/logger');
3+
const ExpressServer = require('../mify-generated/services/{{serviceName}}/expressServer');
44

55
const launchServer = async () => {
66
try {

cmd/mify/cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ func PersistentPostRun(cmd *cobra.Command, args []string) {
9595

9696
appContext.InitStatsCollector(desc.GetStatsQueueFile())
9797
appContext.StatsCollector.LogCobraCommandExecuted(cmd)
98-
_ = appContext.StatsCollector.MaybeSendStats()
98+
//_ = appContext.StatsCollector.MaybeSendStats()
9999
// TODO: return logger when it will be possible to write log to file only
100100
// err := appContext.StatsCollector.MaybeSendStats()
101101
// if err != nil {
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)