Skip to content

Commit

Permalink
reduce log time interval
Browse files Browse the repository at this point in the history
  • Loading branch information
FusRoman committed Nov 6, 2023
1 parent f3dea27 commit d4a74c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fink_mm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "0.16.7"
__version__ = "0.16.8"
__distribution_schema_version__ = "1.3"
__observatory_schema_version__ = "1.1"
2 changes: 1 addition & 1 deletion fink_mm/ztf_join_gcn.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def print_logs():
logger.info(f"query status : {query_grb.status}")
logger.newline()

logs_thread = RepeatTimer(int(tinterval) / 2, print_logs)
logs_thread = RepeatTimer(1800, print_logs)
logs_thread.start()
# Keep the Streaming running until something or someone ends it!
if exit_after is not None:
Expand Down

0 comments on commit d4a74c3

Please sign in to comment.