Skip to content

Commit 56a3d84

Browse files
authored
Merge pull request #1 from HumairAK/some-change
Some change for dsp.
2 parents e57364f + cbb1c15 commit 56a3d84

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

backend/src/agent/persistence/persistence_agent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ func (p *PersistenceAgent) Run(threadiness int, stopCh <-chan struct{}) error {
9090
defer p.workflowWorker.Shutdown()
9191

9292
// Start the informer factories to begin populating the informer caches
93-
log.Info("Starting The persistence agent")
93+
log.Info("[Somechange] Starting The persistence agent")
9494

9595
// Wait for the caches to be synced before starting workers
9696
log.Info("Waiting for informer caches to sync")

backend/src/apiserver/client_manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ func (c *ClientManager) Authenticators() []auth.Authenticator {
157157
}
158158

159159
func (c *ClientManager) init() {
160-
glog.Info("Initializing client manager")
160+
glog.Info("[Somechange] Initializing client manager")
161161
db := initDBClient(common.GetDurationConfig(initConnectionTimeout))
162162
db.SetConnMaxLifetime(common.GetDurationConfig(dbConMaxLifeTime))
163163

backend/src/crd/controller/scheduledworkflow/controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ func (c *Controller) Run(threadiness int, stopCh <-chan struct{}) error {
156156
defer c.workqueue.ShutDown()
157157

158158
// Start the informer factories to begin populating the informer caches
159-
log.Info("Starting ScheduledWorkflow controller")
159+
log.Info("[Somechange] Starting ScheduledWorkflow controller")
160160

161161
// Wait for the caches to be synced before starting workers
162162
log.Info("Waiting for informer caches to sync")

frontend/server/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export class UIServer {
7272
}
7373
port = port || this.options.server.port;
7474
this.httpServer = this.app.listen(port, () => {
75-
console.log('Server listening at http://localhost:' + port);
75+
console.log('[Somechange] Server listening at http://localhost:' + port);
7676
});
7777
return this.httpServer;
7878
}

0 commit comments

Comments
 (0)