File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ POST_INTERVAL_MAX= # Default: 180
78
78
POST_IMMEDIATELY =
79
79
80
80
# Twitter action processing configuration
81
- ACTION_INTERVAL = 300000 # Interval in milliseconds between action processing runs (default: 5 minutes)
81
+ ACTION_INTERVAL = # Interval in minutes between action processing runs (default: 5 minutes)
82
82
ENABLE_ACTION_PROCESSING = false # Set to true to enable the action processing loop
83
83
84
84
# Feature Flags
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ export class TwitterPostClient {
121
121
`- Action Processing: ${ this . client . twitterConfig . ENABLE_ACTION_PROCESSING ? "enabled" : "disabled" } `
122
122
) ;
123
123
elizaLogger . log (
124
- `- Action Interval: ${ this . client . twitterConfig . ACTION_INTERVAL } seconds `
124
+ `- Action Interval: ${ this . client . twitterConfig . ACTION_INTERVAL } minutes `
125
125
) ;
126
126
elizaLogger . log (
127
127
`- Post Immediately: ${ this . client . twitterConfig . POST_IMMEDIATELY ? "enabled" : "disabled" } `
@@ -180,7 +180,7 @@ export class TwitterPostClient {
180
180
if ( results ) {
181
181
elizaLogger . log ( `Processed ${ results . length } tweets` ) ;
182
182
elizaLogger . log (
183
- `Next action processing scheduled in ${ actionInterval / 1000 } seconds `
183
+ `Next action processing scheduled in ${ actionInterval } minutes `
184
184
) ;
185
185
// Wait for the full interval before next processing
186
186
await new Promise ( ( resolve ) =>
You can’t perform that action at this time.
0 commit comments