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 @@ -83,7 +83,7 @@ POST_INTERVAL_MAX= # Default: 180
83
83
POST_IMMEDIATELY =
84
84
85
85
# Twitter action processing configuration
86
- ACTION_INTERVAL = 300000 # Interval in milliseconds between action processing runs (default: 5 minutes)
86
+ ACTION_INTERVAL = # Interval in minutes between action processing runs (default: 5 minutes)
87
87
ENABLE_ACTION_PROCESSING = false # Set to true to enable the action processing loop
88
88
89
89
# Feature Flags
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ export class TwitterPostClient {
126
126
`- Action Processing: ${ this . client . twitterConfig . ENABLE_ACTION_PROCESSING ? "enabled" : "disabled" } `
127
127
) ;
128
128
elizaLogger . log (
129
- `- Action Interval: ${ this . client . twitterConfig . ACTION_INTERVAL } seconds `
129
+ `- Action Interval: ${ this . client . twitterConfig . ACTION_INTERVAL } minutes `
130
130
) ;
131
131
elizaLogger . log (
132
132
`- Post Immediately: ${ this . client . twitterConfig . POST_IMMEDIATELY ? "enabled" : "disabled" } `
@@ -185,7 +185,7 @@ export class TwitterPostClient {
185
185
if ( results ) {
186
186
elizaLogger . log ( `Processed ${ results . length } tweets` ) ;
187
187
elizaLogger . log (
188
- `Next action processing scheduled in ${ actionInterval / 1000 } seconds `
188
+ `Next action processing scheduled in ${ actionInterval } minutes `
189
189
) ;
190
190
// Wait for the full interval before next processing
191
191
await new Promise ( ( resolve ) =>
You can’t perform that action at this time.
0 commit comments